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.

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 import 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.

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