Interface PrefixListProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
,PrefixListOptions
- All Known Implementing Classes:
PrefixListProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-22T02:24:00.750Z")
@Stability(Stable)
public interface PrefixListProps
extends software.amazon.jsii.JsiiSerializable, PrefixListOptions
Properties for creating a prefix list.
Example:
PrefixList.Builder.create(this, "EmptyPrefixList") .maxEntries(100) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forPrefixListProps
static final class
An implementation forPrefixListProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic PrefixListProps.Builder
builder()
default AddressFamily
The address family of the prefix list.default List<CfnPrefixList.EntryProperty>
The list of entries for the prefix list.default String
The name of the prefix list.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
Methods inherited from interface software.amazon.awscdk.services.ec2.PrefixListOptions
getMaxEntries
-
Method Details
-
getAddressFamily
The address family of the prefix list.Default: AddressFamily.IP_V4
-
getEntries
The list of entries for the prefix list.Default: []
-
getPrefixListName
The name of the prefix list.Default: None
-
builder
- Returns:
- a
PrefixListProps.Builder
ofPrefixListProps
-