CfnIpamExternalResourceVerificationTokenProps
- class aws_cdk.aws_ec2.CfnIpamExternalResourceVerificationTokenProps(*, ipam_id, tags=None)
Bases:
objectProperties 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:
- 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.