Ipam
- class aws_cdk.aws_ec2_alpha.Ipam(scope, id, *, ipam_name=None, operating_region=None)
Bases:
Resource
(experimental) Creates new IPAM with default public and private scope.
- See:
https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ipamscope.html
- Stability:
experimental
- Resource:
AWS::EC2::IPAM
- ExampleMetadata:
infused
Example:
stack = Stack() ipam = Ipam(self, "Ipam", operating_region=["us-west-1"] ) ipam_public_pool = ipam.public_scope.add_pool("PublicPoolA", address_family=AddressFamily.IP_V6, aws_service=AwsServiceName.EC2, locale="us-west-1", public_ip_source=IpamPoolPublicIpSource.AMAZON ) ipam_public_pool.provision_cidr("PublicPoolACidrA", netmask_length=52) ipam_private_pool = ipam.private_scope.add_pool("PrivatePoolA", address_family=AddressFamily.IP_V4 ) ipam_private_pool.provision_cidr("PrivatePoolACidrA", netmask_length=8) VpcV2(self, "Vpc", primary_address_block=IpAddresses.ipv4("10.0.0.0/24"), secondary_address_blocks=[ IpAddresses.amazon_provided_ipv6(cidr_block_name="AmazonIpv6"), IpAddresses.ipv6_ipam( ipam_pool=ipam_public_pool, netmask_length=52, cidr_block_name="ipv6Ipam" ), IpAddresses.ipv4_ipam( ipam_pool=ipam_private_pool, netmask_length=8, cidr_block_name="ipv4Ipam" ) ] )
- Parameters:
scope (
Construct
) –id (
str
) –ipam_name (
Optional
[str
]) – (experimental) Name of IPAM that can be used for tagging resource. Default: - If no name provided, no tags will be added to the IPAMoperating_region (
Optional
[Sequence
[str
]]) – (experimental) The operating Regions for an IPAM. Operating Regions are AWS Regions where the IPAM is allowed to manage IP address CIDRs For more information about operating Regions, see Create an IPAM in the Amazon VPC IPAM User Guide . Default: - Stack.region if defined in the stack
- Stability:
experimental
Methods
- add_scope(scope, id, *, ipam_scope_name=None)
(experimental) Function to add custom scope to an existing IPAM Custom scopes can only be private.
- Parameters:
scope (
Construct
) –id (
str
) –ipam_scope_name (
Optional
[str
]) – (experimental) IPAM scope name that will be used for tagging. Default: - no tags will be added to the scope
- Stability:
experimental
- Return type:
- apply_removal_policy(policy)
Apply the given removal policy to this resource.
The Removal Policy controls what happens to this resource when it stops being managed by CloudFormation, either because you’ve removed it from the CDK application or because you’ve made a change that requires the resource to be replaced.
The resource can be deleted (
RemovalPolicy.DESTROY
), or left in your AWS account for data recovery and cleanup later (RemovalPolicy.RETAIN
).- Parameters:
policy (
RemovalPolicy
) –- Return type:
None
- to_string()
Returns a string representation of this construct.
- Return type:
str
Attributes
- env
The environment this resource belongs to.
For resources that are created and managed by the CDK (generally, those created by creating new class instances like Role, Bucket, etc.), this is always the same as the environment of the stack they belong to; however, for imported resources (those obtained from static methods like fromRoleArn, fromBucketName, etc.), that might be different than the stack they were imported into.
- ipam_id
(experimental) Access to Ipam resource id that can be used later to add a custom private scope to this IPAM.
- Stability:
experimental
- Attribute:
IpamId
- node
The tree node.
- operating_regions
(experimental) List of operating regions for IPAM.
- Stability:
experimental
- private_scope
(experimental) Provides access to default private IPAM scope through add pool method.
Usage: To add an Ipam Pool to a default private scope
- See:
https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ipamscope.html
- Stability:
experimental
- public_scope
(experimental) Provides access to default public IPAM scope through add pool method.
Usage: To add an Ipam Pool to a default public scope
- See:
https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ipamscope.html
- Stability:
experimental
- scopes
(experimental) List of scopes created under this IPAM.
- Stability:
experimental
- stack
The stack in which this resource is defined.
Static Methods
- classmethod is_construct(x)
Checks if
x
is a construct.Use this method instead of
instanceof
to properly detectConstruct
instances, even when the construct library is symlinked.Explanation: in JavaScript, multiple copies of the
constructs
library on disk are seen as independent, completely different libraries. As a consequence, the classConstruct
in each copy of theconstructs
library is seen as a different class, and an instance of one class will not test asinstanceof
the other class.npm install
will not create installations like this, but users may manually symlink construct libraries together or use a monorepo tool: in those cases, multiple copies of theconstructs
library can be accidentally installed, andinstanceof
will behave unpredictably. It is safest to avoid usinginstanceof
, and using this type-testing method instead.- Parameters:
x (
Any
) – Any object.- Return type:
bool
- Returns:
true if
x
is an object created from a class which extendsConstruct
.
- classmethod is_owned_resource(construct)
Returns true if the construct was created by CDK, and false otherwise.
- Parameters:
construct (
IConstruct
) –- Return type:
bool
- classmethod is_resource(construct)
Check whether the given construct is a Resource.
- Parameters:
construct (
IConstruct
) –- Return type:
bool