CfnIpamExternalResourceVerificationTokenMixinProps

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

Bases: object

Properties for CfnIpamExternalResourceVerificationTokenPropsMixin.

Parameters:
  • ipam_id (Optional[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.cfn_property_mixins import aws_ec2 as ec2

cfn_ipam_external_resource_verification_token_mixin_props = ec2.CfnIpamExternalResourceVerificationTokenMixinProps(
    ipam_id="ipamId",
    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