Interface CfnIPAMPrefixListResolverPropsMixin.IpamPrefixListResolverRuleConditionProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnIPAMPrefixListResolverPropsMixin.IpamPrefixListResolverRuleConditionProperty.Jsii$Proxy
Enclosing class:
CfnIPAMPrefixListResolverPropsMixin

@Stability(Stable) public static interface CfnIPAMPrefixListResolverPropsMixin.IpamPrefixListResolverRuleConditionProperty extends software.amazon.jsii.JsiiSerializable
Two of the rule types allow you to add conditions to the rules.

(1) For IPAM Pool CIDR rules, you can specify an ipamPoolId; if not specified, the rule will apply to all IPAM Pool CIDRs in the scope. (2) For IPAM Resource CIDR rules, you can specify resourceId, resourceOwner, resourceRegion, cidr, or resourceTag.

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.*;
 IpamPrefixListResolverRuleConditionProperty ipamPrefixListResolverRuleConditionProperty = IpamPrefixListResolverRuleConditionProperty.builder()
         .cidr("cidr")
         .ipamPoolId("ipamPoolId")
         .operation("operation")
         .resourceId("resourceId")
         .resourceOwner("resourceOwner")
         .resourceRegion("resourceRegion")
         .resourceTag(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build())
         .build();
 

See Also: