@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:38.276Z") @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()
The IP address type.
|
default Object |
getEntries()
One or more entries for the prefix list.
|
Number |
getMaxEntries()
The maximum number of entries for the prefix list.
|
String |
getPrefixListName()
A name for the prefix list.
|
default List<CfnTag> |
getTags()
The tags for the prefix list.
|
@Stability(value=Stable) @NotNull String getAddressFamily()
Valid Values: IPv4 | IPv6
@Stability(value=Stable) @NotNull Number getMaxEntries()
@Stability(value=Stable) @NotNull String getPrefixListName()
Constraints: Up to 255 characters in length. The name cannot start with com.amazonaws .
@Stability(value=Stable) @Nullable default Object getEntries()
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
@Stability(value=Stable) static CfnPrefixListProps.Builder builder()
CfnPrefixListProps.Builder of CfnPrefixListPropsCopyright © 2022. All rights reserved.