Show / Hide Table of Contents

Class CfnVPNGatewayRoutePropagationProps

Properties for defining a CfnVPNGatewayRoutePropagation.

Inheritance
object
CfnVPNGatewayRoutePropagationProps
Implements
ICfnVPNGatewayRoutePropagationProps
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 CfnVPNGatewayRoutePropagationProps : ICfnVPNGatewayRoutePropagationProps
Syntax (vb)
Public Class CfnVPNGatewayRoutePropagationProps Implements ICfnVPNGatewayRoutePropagationProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpngatewayroutepropagation.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 cfnVPNGatewayRoutePropagationProps = new CfnVPNGatewayRoutePropagationProps {
                 RouteTableIds = new [] { "routeTableIds" },
                 VpnGatewayId = "vpnGatewayId"
             };

Synopsis

Constructors

CfnVPNGatewayRoutePropagationProps()

Properties for defining a CfnVPNGatewayRoutePropagation.

Properties

RouteTableIds

The ID of the route table.

VpnGatewayId

The ID of the virtual private gateway that is attached to a VPC.

Constructors

CfnVPNGatewayRoutePropagationProps()

Properties for defining a CfnVPNGatewayRoutePropagation.

public CfnVPNGatewayRoutePropagationProps()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpngatewayroutepropagation.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 cfnVPNGatewayRoutePropagationProps = new CfnVPNGatewayRoutePropagationProps {
                 RouteTableIds = new [] { "routeTableIds" },
                 VpnGatewayId = "vpnGatewayId"
             };

Properties

RouteTableIds

The ID of the route table.

public string[] RouteTableIds { get; set; }
Property Value

string[]

Remarks

The routing table must be associated with the same VPC that the virtual private gateway is attached to.

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

VpnGatewayId

The ID of the virtual private gateway that is attached to a VPC.

public string VpnGatewayId { get; set; }
Property Value

string

Remarks

The virtual private gateway must be attached to the same VPC that the routing tables are associated with.

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

Implements

ICfnVPNGatewayRoutePropagationProps
Back to top Generated by DocFX