interface CfnTransitGatewayPolicyTableProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.EC2.CfnTransitGatewayPolicyTableProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsec2#CfnTransitGatewayPolicyTableProps |
Java | software.amazon.awscdk.services.ec2.CfnTransitGatewayPolicyTableProps |
Python | aws_cdk.aws_ec2.CfnTransitGatewayPolicyTableProps |
TypeScript | aws-cdk-lib » aws_ec2 » CfnTransitGatewayPolicyTableProps |
Properties for defining a CfnTransitGatewayPolicyTable.
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 cfnTransitGatewayPolicyTableProps: ec2.CfnTransitGatewayPolicyTableProps = {
transitGatewayId: 'transitGatewayId',
// the properties below are optional
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| transit | string | The Id of transit gateway. |
| tags? | Cfn[] |
transitGatewayId
Type:
string
The Id of transit gateway.
tags?
Type:
Cfn[]
(optional)

.NET
Go
Java
Python
TypeScript