CfnIPAMResourceDiscoveryAssociationProps
- class aws_cdk.aws_ec2.CfnIPAMResourceDiscoveryAssociationProps(*, ipam_id, ipam_resource_discovery_id, tags=None)
Bases:
object
Properties for defining a
CfnIPAMResourceDiscoveryAssociation
.- Parameters:
ipam_id (
str
) – The IPAM ID.ipam_resource_discovery_id (
str
) – The resource discovery ID.tags (
Optional
[Sequence
[Union
[CfnTag
,Dict
[str
,Any
]]]]) – A tag is a label that you assign to an AWS resource. Each tag consists of a key and an optional value. You can use tags to search and filter your resources or track your AWS costs.
- Link:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_ec2 as ec2 cfn_iPAMResource_discovery_association_props = ec2.CfnIPAMResourceDiscoveryAssociationProps( ipam_id="ipamId", ipam_resource_discovery_id="ipamResourceDiscoveryId", # the properties below are optional tags=[CfnTag( key="key", value="value" )] )
Attributes
- ipam_id
The IPAM ID.
- ipam_resource_discovery_id
The resource discovery ID.
- tags
A tag is a label that you assign to an AWS resource.
Each tag consists of a key and an optional value. You can use tags to search and filter your resources or track your AWS costs.