interface CfnSubnetRouteTableAssociationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EC2.Mixins.CfnSubnetRouteTableAssociationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsec2/mixins#CfnSubnetRouteTableAssociationMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.ec2.mixins.CfnSubnetRouteTableAssociationMixinProps |
Python | aws_cdk.mixins_preview.aws_ec2.mixins.CfnSubnetRouteTableAssociationMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_ec2 » mixins » CfnSubnetRouteTableAssociationMixinProps |
Properties for CfnSubnetRouteTableAssociationPropsMixin.
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 cfnSubnetRouteTableAssociationMixinProps: ec2_mixins.CfnSubnetRouteTableAssociationMixinProps = {
routeTableId: 'routeTableId',
subnetId: 'subnetId',
};
Properties
| Name | Type | Description |
|---|---|---|
| route | string | The ID of the route table. |
| subnet | string | The ID of the subnet. |
routeTableId?
Type:
string
(optional)
The ID of the route table.
The physical ID changes when the route table ID is changed.
subnetId?
Type:
string
(optional)
The ID of the subnet.

.NET
Go
Java
Python
TypeScript