interface CfnIpamExternalResourceVerificationTokenProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.EC2.CfnIpamExternalResourceVerificationTokenProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsec2#CfnIpamExternalResourceVerificationTokenProps |
Java | software.amazon.awscdk.services.ec2.CfnIpamExternalResourceVerificationTokenProps |
Python | aws_cdk.aws_ec2.CfnIpamExternalResourceVerificationTokenProps |
TypeScript | aws-cdk-lib » aws_ec2 » CfnIpamExternalResourceVerificationTokenProps |
Properties for defining a CfnIpamExternalResourceVerificationToken.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_ec2 as ec2 } from 'aws-cdk-lib';
const cfnIpamExternalResourceVerificationTokenProps: ec2.CfnIpamExternalResourceVerificationTokenProps = {
ipamId: 'ipamId',
// the properties below are optional
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| ipam | string | The ID of the IPAM that will create the token. |
| tags? | Cfn[] | The tags for the token. |
ipamId
Type:
string
The ID of the IPAM that will create the token.
tags?
Type:
Cfn[]
(optional)
The tags for the token.

.NET
Go
Java
Python
TypeScript