Show / Hide Table of Contents

Class CfnSubnetRouteTableAssociationProps

Properties for defining a CfnSubnetRouteTableAssociation.

Inheritance
object
CfnSubnetRouteTableAssociationProps
Implements
ICfnSubnetRouteTableAssociationProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.EC2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnSubnetRouteTableAssociationProps : ICfnSubnetRouteTableAssociationProps
Syntax (vb)
Public Class CfnSubnetRouteTableAssociationProps Implements ICfnSubnetRouteTableAssociationProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetroutetableassociation.html

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 CfnSubnetRouteTableAssociation.

Properties

RouteTableId

The ID of the route table.

SubnetId

The ID of the subnet.

Constructors

CfnSubnetRouteTableAssociationProps()

Properties for defining a CfnSubnetRouteTableAssociation.

public CfnSubnetRouteTableAssociationProps()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetroutetableassociation.html

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

object

Remarks

The physical ID changes when the route table ID is changed.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetroutetableassociation.html#cfn-ec2-subnetroutetableassociation-routetableid

Type union: either string or IRouteTableRef

SubnetId

The ID of the subnet.

public object SubnetId { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-subnetroutetableassociation.html#cfn-ec2-subnetroutetableassociation-subnetid

Type union: either string or ISubnetRef

Implements

ICfnSubnetRouteTableAssociationProps
Back to top Generated by DocFX