interface CfnGatewayRouteTableAssociationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.EC2.CfnGatewayRouteTableAssociationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsec2#CfnGatewayRouteTableAssociationMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.ec2.CfnGatewayRouteTableAssociationMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_ec2.CfnGatewayRouteTableAssociationMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_ec2 » 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 { aws_ec2 as ec2 } from '@aws-cdk/cfn-property-mixins';
const cfnGatewayRouteTableAssociationMixinProps: ec2.CfnGatewayRouteTableAssociationMixinProps = {
gatewayId: 'gatewayId',
routeTableId: 'routeTableId',
};
Properties
| Name | Type | Description |
|---|---|---|
| gateway | string | IInternet | IVPNGateway | The ID of the gateway. |
| route | string | IRoute | The ID of the route table. |
gatewayId?
Type:
string | IInternet | IVPNGateway
(optional)
The ID of the gateway.
routeTableId?
Type:
string | IRoute
(optional)
The ID of the route table.

.NET
Go
Java
Python
TypeScript