CfnIPAMResourceDiscoveryAssociationMixinProps

class aws_cdk.mixins_preview.aws_ec2.mixins.CfnIPAMResourceDiscoveryAssociationMixinProps(*, ipam_id=None, ipam_resource_discovery_id=None, tags=None)

Bases: object

Properties 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:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ipamresourcediscoveryassociation.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.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.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ipamresourcediscoveryassociation.html#cfn-ec2-ipamresourcediscoveryassociation-ipamid

ipam_resource_discovery_id

The resource discovery ID.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ipamresourcediscoveryassociation.html#cfn-ec2-ipamresourcediscoveryassociation-ipamresourcediscoveryid

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.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ipamresourcediscoveryassociation.html#cfn-ec2-ipamresourcediscoveryassociation-tags