CfnIPAMScopeProps
- class aws_cdk.aws_ec2.CfnIPAMScopeProps(*, ipam_id, description=None, tags=None)
Bases:
object
Properties for defining a
CfnIPAMScope
.- Parameters:
ipam_id (
str
) – The ID of the IPAM for which you’re creating this scope.description (
Optional
[str
]) – The description of the scope.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.
- See:
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ipamscope.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_iPAMScope_props = ec2.CfnIPAMScopeProps( ipam_id="ipamId", # the properties below are optional description="description", tags=[CfnTag( key="key", value="value" )] )
Attributes
- description
The description of the scope.
- ipam_id
The ID of the IPAM for which you’re creating this scope.
- 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.