CfnIpamExternalResourceVerificationTokenProps

class aws_cdk.aws_ec2.CfnIpamExternalResourceVerificationTokenProps(*, ipam_id, tags=None)

Bases: object

Properties for defining a CfnIpamExternalResourceVerificationToken.

Parameters:
  • ipam_id (str) – The ID of the IPAM that will create the token.

  • tags (Optional[Sequence[Union[CfnTag, Dict[str, Any]]]]) – The tags for the token.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ipamexternalresourceverificationtoken.html

ExampleMetadata:

fixture=_generated

Example:

from aws_cdk import CfnTag
# 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_ipam_external_resource_verification_token_props = ec2.CfnIpamExternalResourceVerificationTokenProps(
    ipam_id="ipamId",

    # the properties below are optional
    tags=[CfnTag(
        key="key",
        value="value"
    )]
)

Attributes

ipam_id

The ID of the IPAM that will create the token.

See:

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

tags

The tags for the token.

See:

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