Interface CfnPrefixListMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnPrefixListMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:19:58.598Z")
@Stability(Stable)
public interface CfnPrefixListMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnPrefixListPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.ec2.*;
CfnPrefixListMixinProps cfnPrefixListMixinProps = CfnPrefixListMixinProps.builder()
.addressFamily("addressFamily")
.entries(List.of(EntryProperty.builder()
.cidr("cidr")
.description("description")
.build()))
.maxEntries(123)
.prefixListName("prefixListName")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnPrefixListMixinPropsstatic final classAn implementation forCfnPrefixListMixinProps -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAddressFamily
The IP address type.Valid Values:
IPv4|IPv6- See Also:
-
getEntries
The entries for the prefix list.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnPrefixListPropsMixin.EntryProperty>- See Also:
-
getMaxEntries
The maximum number of entries for the prefix list.You can't modify the entries and the size of a prefix list at the same time.
This property is required when you create a prefix list.
- See Also:
-
getPrefixListName
A name for the prefix list.Constraints: Up to 255 characters in length. The name cannot start with
com.amazonaws.- See Also:
-
getTags
The tags for the prefix list.- See Also:
-
builder
- Returns:
- a
CfnPrefixListMixinProps.BuilderofCfnPrefixListMixinProps
-