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

.NET
Go
Java
Python
TypeScript