@Generated(value="jsii-pacmak/1.58.0 (build f8ba112)",
date="2022-05-13T01:13:32.541Z")
public interface CfnPrefixListProps
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() |
java.lang.String |
getAddressFamily()
The IP address type.
|
default java.lang.Object |
getEntries()
One or more entries for the prefix list.
|
java.lang.Number |
getMaxEntries()
The maximum number of entries for the prefix list.
|
java.lang.String |
getPrefixListName()
A name for the prefix list.
|
default java.util.List<CfnTag> |
getTags()
The tags for the prefix list.
|
java.lang.String getAddressFamily()
Valid Values: IPv4
| IPv6
java.lang.Number getMaxEntries()
java.lang.String getPrefixListName()
Constraints: Up to 255 characters in length. The name cannot start with com.amazonaws
.
default java.lang.Object getEntries()
default java.util.List<CfnTag> getTags()
static CfnPrefixListProps.Builder builder()
CfnPrefixListProps.Builder
of CfnPrefixListProps