@Generated(value="jsii-pacmak/1.47.0 (build 86d2c33)", date="2021-12-22T10:27:16.965Z") @Stability(value=Stable) public interface CfnPrefixListProps extends software.amazon.jsii.JsiiSerializable
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.ec2.*;
CfnPrefixListProps cfnPrefixListProps = CfnPrefixListProps.builder()
.addressFamily("addressFamily")
.maxEntries(123)
.prefixListName("prefixListName")
// the properties below are optional
.entries(List.of(EntryProperty.builder()
.cidr("cidr")
// the properties below are optional
.description("description")
.build()))
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnPrefixListProps.Builder
A builder for
CfnPrefixListProps |
static class |
CfnPrefixListProps.Jsii$Proxy
An implementation for
CfnPrefixListProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnPrefixListProps.Builder |
builder() |
String |
getAddressFamily()
`AWS::EC2::PrefixList.AddressFamily`.
|
default Object |
getEntries()
`AWS::EC2::PrefixList.Entries`.
|
Number |
getMaxEntries()
`AWS::EC2::PrefixList.MaxEntries`.
|
String |
getPrefixListName()
`AWS::EC2::PrefixList.PrefixListName`.
|
default List<CfnTag> |
getTags()
`AWS::EC2::PrefixList.Tags`.
|
@Stability(value=Stable) @NotNull String getAddressFamily()
@Stability(value=Stable) @Nullable default Object getEntries()
@Stability(value=Stable) @NotNull Number getMaxEntries()
@Stability(value=Stable) @NotNull String getPrefixListName()
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
@Stability(value=Stable) static CfnPrefixListProps.Builder builder()
CfnPrefixListProps.Builder of CfnPrefixListPropsCopyright © 2021. All rights reserved.