Show / Hide Table of Contents

Interface ICfnVPNGatewayRoutePropagationProps

Properties for defining a CfnVPNGatewayRoutePropagation.

Namespace: Amazon.CDK.AWS.EC2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ICfnVPNGatewayRoutePropagationProps
Syntax (vb)
Public Interface 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

Properties

RouteTableIds

The ID of the route table.

VpnGatewayId

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

Properties

RouteTableIds

The ID of the route table.

string[] RouteTableIds { get; }
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.

string VpnGatewayId { get; }
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

Back to top Generated by DocFX