IPAMScopeReference
- class aws_cdk.aws_ec2.IPAMScopeReference(*, ipam_scope_arn, ipam_scope_id)
Bases:
object
A reference to a IPAMScope resource.
- Parameters:
ipam_scope_arn (
str
) – The ARN of the IPAMScope resource.ipam_scope_id (
str
) – The IpamScopeId of the IPAMScope resource.
- 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 i_pAMScope_reference = { "ipam_scope_arn": "ipamScopeArn", "ipam_scope_id": "ipamScopeId" }
Attributes
- ipam_scope_arn
The ARN of the IPAMScope resource.
- ipam_scope_id
The IpamScopeId of the IPAMScope resource.