Interface CfnIPAMProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnIPAMProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-21T06:34:06.702Z")
@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()
.description("description")
.enablePrivateGua(false)
.operatingRegions(List.of(IpamOperatingRegionProperty.builder()
.regionName("regionName")
.build()))
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.tier("tier")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnIPAMPropsstatic final classAn implementation forCfnIPAMProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnIPAMProps.Builderbuilder()default StringThe description for the IPAM.default ObjectEnable this option to use your own GUA ranges as private IPv6 addresses.default ObjectThe operating Regions for an IPAM.getTags()The key/value combination of a tag assigned to the resource.default StringgetTier()IPAM is offered in a Free Tier and an Advanced Tier.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDescription
The description for the IPAM.- See Also:
-
getEnablePrivateGua
Enable this option to use your own GUA ranges as private IPv6 addresses.This option is disabled by default.
- See Also:
-
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 .
- See Also:
-
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.- See Also:
-
getTier
IPAM is offered in a Free Tier and an Advanced Tier.For more information about the features available in each tier and the costs associated with the tiers, see the VPC IPAM product pricing page .
- See Also:
-
builder
- Returns:
- a
CfnIPAMProps.BuilderofCfnIPAMProps
-