Class CfnSubnetRouteTableAssociationProps
Properties for defining a CfnSubnetRouteTableAssociation.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.EC2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnSubnetRouteTableAssociationProps : ICfnSubnetRouteTableAssociationProps
Syntax (vb)
Public Class CfnSubnetRouteTableAssociationProps Implements ICfnSubnetRouteTableAssociationProps
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.EC2;
var cfnSubnetRouteTableAssociationProps = new CfnSubnetRouteTableAssociationProps {
RouteTableId = "routeTableId",
SubnetId = "subnetId"
};
Synopsis
Constructors
| CfnSubnetRouteTableAssociationProps() | Properties for defining a |
Properties
| RouteTableId | The ID of the route table. |
| SubnetId | The ID of the subnet. |
Constructors
CfnSubnetRouteTableAssociationProps()
Properties for defining a CfnSubnetRouteTableAssociation.
public CfnSubnetRouteTableAssociationProps()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.EC2;
var cfnSubnetRouteTableAssociationProps = new CfnSubnetRouteTableAssociationProps {
RouteTableId = "routeTableId",
SubnetId = "subnetId"
};
Properties
RouteTableId
The ID of the route table.
public object RouteTableId { get; set; }
Property Value
Remarks
The physical ID changes when the route table ID is changed.
Type union: either string or IRouteTableRef
SubnetId
The ID of the subnet.
public object SubnetId { get; set; }