Interface CfnIPAMPrefixListResolverProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnIPAMPrefixListResolverProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:19:42.503Z")
@Stability(Stable)
public interface CfnIPAMPrefixListResolverProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnIPAMPrefixListResolver.
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.*;
CfnIPAMPrefixListResolverProps cfnIPAMPrefixListResolverProps = CfnIPAMPrefixListResolverProps.builder()
.addressFamily("addressFamily")
// the properties below are optional
.description("description")
.ipamId("ipamId")
.rules(List.of(IpamPrefixListResolverRuleProperty.builder()
.ruleType("ruleType")
// the properties below are optional
.conditions(List.of(IpamPrefixListResolverRuleConditionProperty.builder()
.operation("operation")
// the properties below are optional
.cidr("cidr")
.ipamPoolId("ipamPoolId")
.resourceId("resourceId")
.resourceOwner("resourceOwner")
.resourceRegion("resourceRegion")
.resourceTag(CfnTag.builder()
.key("key")
.value("value")
.build())
.build()))
.ipamScopeId("ipamScopeId")
.resourceType("resourceType")
.staticCidr("staticCidr")
.build()))
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnIPAMPrefixListResolverPropsstatic final classAn implementation forCfnIPAMPrefixListResolverProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The address family of the address space in this Prefix List Resolver.default Stringdefault StringThe Id of the IPAM this Prefix List Resolver is a part of.default ObjectgetRules()Rules define the business logic for selecting CIDRs from IPAM.getTags()An array of key-value pairs to apply to this resource.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAddressFamily
The address family of the address space in this Prefix List Resolver.Either IPv4 or IPv6.
- See Also:
-
getDescription
- See Also:
-
getIpamId
The Id of the IPAM this Prefix List Resolver is a part of.- See Also:
-
getRules
Rules define the business logic for selecting CIDRs from IPAM.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnIPAMPrefixListResolver.IpamPrefixListResolverRuleProperty>- See Also:
-
getTags
An array of key-value pairs to apply to this resource.- See Also:
-
builder
-