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: