Interface CfnIPAMProps
- All Superinterfaces:
 software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
 CfnIPAMProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
           date="2023-06-19T16:30:38.603Z")
@Stability(Stable)
public interface CfnIPAMProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a 
CfnIPAM.
 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.*;
 CfnIPAMProps cfnIPAMProps = CfnIPAMProps.builder()
         .defaultResourceDiscoveryAssociationId("defaultResourceDiscoveryAssociationId")
         .defaultResourceDiscoveryId("defaultResourceDiscoveryId")
         .description("description")
         .operatingRegions(List.of(IpamOperatingRegionProperty.builder()
                 .regionName("regionName")
                 .build()))
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 - 
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnIPAMPropsstatic final classAn implementation forCfnIPAMProps - 
Method Summary
Modifier and TypeMethodDescriptionstatic CfnIPAMProps.Builderbuilder()default StringThe IPAM's default resource discovery association ID.default StringThe IPAM's default resource discovery ID.default StringThe description for the IPAM.default ObjectThe operating Regions for an IPAM.getTags()The key/value combination of a tag assigned to the resource.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson 
- 
Method Details
- 
getDefaultResourceDiscoveryAssociationId
The IPAM's default resource discovery association ID. - 
getDefaultResourceDiscoveryId
The IPAM's default resource discovery ID. - 
getDescription
The description for the IPAM. - 
getOperatingRegions
The operating Regions for an IPAM.Operating Regions are AWS Regions where the IPAM is allowed to manage IP address CIDRs. IPAM only discovers and monitors resources in the AWS Regions you select as operating Regions.
For more information about operating Regions, see Create an IPAM in the Amazon VPC IPAM User Guide .
 - 
getTags
The key/value combination of a tag assigned to the resource.Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key
Ownerand the valueTeamA, specifytag:Ownerfor the filter name andTeamAfor the filter value. - 
builder
- Returns:
 - a 
CfnIPAMProps.BuilderofCfnIPAMProps 
 
 -