CfnIPAMProps
- class aws_cdk.aws_ec2.CfnIPAMProps(*, description=None, enable_private_gua=None, operating_regions=None, tags=None, tier=None)
Bases:
object
Properties for defining a
CfnIPAM
.- Parameters:
description (
Optional
[str
]) – The description for the IPAM.enable_private_gua (
Union
[bool
,IResolvable
,None
]) – Enable this option to use your own GUA ranges as private IPv6 addresses. This option is disabled by default.operating_regions (
Union
[IResolvable
,Sequence
[Union
[IResolvable
,IpamOperatingRegionProperty
,Dict
[str
,Any
]]],None
]) – 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 .tags (
Optional
[Sequence
[Union
[CfnTag
,Dict
[str
,Any
]]]]) – 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 keyOwner
and the valueTeamA
, specifytag:Owner
for the filter name andTeamA
for the filter value.tier (
Optional
[str
]) – 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:
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ipam.html
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_ec2 as ec2 cfn_iPAMProps = ec2.CfnIPAMProps( description="description", enable_private_gua=False, operating_regions=[ec2.CfnIPAM.IpamOperatingRegionProperty( region_name="regionName" )], tags=[CfnTag( key="key", value="value" )], tier="tier" )
Attributes
- description
The description for the IPAM.
- enable_private_gua
Enable this option to use your own GUA ranges as private IPv6 addresses.
This option is disabled by default.
- operating_regions
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 .
- tags
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
Owner
and the valueTeamA
, specifytag:Owner
for the filter name andTeamA
for the filter value.
- tier
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 .