interface CfnTransitGatewayPolicyTableAssociationProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.EC2.CfnTransitGatewayPolicyTableAssociationProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsec2#CfnTransitGatewayPolicyTableAssociationProps |
Java | software.amazon.awscdk.services.ec2.CfnTransitGatewayPolicyTableAssociationProps |
Python | aws_cdk.aws_ec2.CfnTransitGatewayPolicyTableAssociationProps |
TypeScript | aws-cdk-lib » aws_ec2 » CfnTransitGatewayPolicyTableAssociationProps |
Properties for defining a CfnTransitGatewayPolicyTableAssociation.
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 cfnTransitGatewayPolicyTableAssociationProps: ec2.CfnTransitGatewayPolicyTableAssociationProps = {
transitGatewayAttachmentId: 'transitGatewayAttachmentId',
transitGatewayPolicyTableId: 'transitGatewayPolicyTableId',
};
Properties
| Name | Type | Description |
|---|---|---|
| transit | string | The ID of transit gateway attachment. |
| transit | string | The ID of transit gateway policy table. |
transitGatewayAttachmentId
Type:
string
The ID of transit gateway attachment.
transitGatewayPolicyTableId
Type:
string
The ID of transit gateway policy table.

.NET
Go
Java
Python
TypeScript