CfnIPAMResourceDiscoveryAssociationMixinProps
- class aws_cdk.mixins_preview.aws_ec2.mixins.CfnIPAMResourceDiscoveryAssociationMixinProps(*, ipam_id=None, ipam_resource_discovery_id=None, tags=None)
Bases:
objectProperties for CfnIPAMResourceDiscoveryAssociationPropsMixin.
- Parameters:
ipam_id (
Optional[str]) – The IPAM ID.ipam_resource_discovery_id (
Optional[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.
- See:
- 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.mixins_preview.aws_ec2 import mixins as ec2_mixins cfn_iPAMResource_discovery_association_mixin_props = ec2_mixins.CfnIPAMResourceDiscoveryAssociationMixinProps( ipam_id="ipamId", ipam_resource_discovery_id="ipamResourceDiscoveryId", 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.