interface CfnTransitGatewayRouteTableMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.EC2.CfnTransitGatewayRouteTableMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsec2#CfnTransitGatewayRouteTableMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.ec2.CfnTransitGatewayRouteTableMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_ec2.CfnTransitGatewayRouteTableMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_ec2 » CfnTransitGatewayRouteTableMixinProps |
Properties for CfnTransitGatewayRouteTablePropsMixin.
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/cfn-property-mixins';
const cfnTransitGatewayRouteTableMixinProps: ec2.CfnTransitGatewayRouteTableMixinProps = {
tags: [{
key: 'key',
value: 'value',
}],
transitGatewayId: 'transitGatewayId',
};
Properties
| Name | Type | Description |
|---|---|---|
| tags? | Cfn[] | Any tags assigned to the route table. |
| transit | string | ITransit | The ID of the transit gateway. |
tags?
Type:
Cfn[]
(optional)
Any tags assigned to the route table.
transitGatewayId?
Type:
string | ITransit
(optional)
The ID of the transit gateway.

.NET
Go
Java
Python
TypeScript