interface CfnGatewayRouteTableAssociationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EC2.Mixins.CfnGatewayRouteTableAssociationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsec2/mixins#CfnGatewayRouteTableAssociationMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.ec2.mixins.CfnGatewayRouteTableAssociationMixinProps |
Python | aws_cdk.mixins_preview.aws_ec2.mixins.CfnGatewayRouteTableAssociationMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_ec2 » mixins » CfnGatewayRouteTableAssociationMixinProps |
Properties for CfnGatewayRouteTableAssociationPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as ec2_mixins } from '@aws-cdk/mixins-preview/aws-ec2';
const cfnGatewayRouteTableAssociationMixinProps: ec2_mixins.CfnGatewayRouteTableAssociationMixinProps = {
gatewayId: 'gatewayId',
routeTableId: 'routeTableId',
};
Properties
| Name | Type | Description |
|---|---|---|
| gateway | string | The ID of the gateway. |
| route | string | The ID of the route table. |
gatewayId?
Type:
string
(optional)
The ID of the gateway.
routeTableId?
Type:
string
(optional)
The ID of the route table.

.NET
Go
Java
Python
TypeScript