Class CfnVPNGatewayRoutePropagationProps
Properties for defining a CfnVPNGatewayRoutePropagation
.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.EC2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnVPNGatewayRoutePropagationProps : ICfnVPNGatewayRoutePropagationProps
Syntax (vb)
Public Class CfnVPNGatewayRoutePropagationProps Implements ICfnVPNGatewayRoutePropagationProps
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 cfnVPNGatewayRoutePropagationProps = new CfnVPNGatewayRoutePropagationProps {
RouteTableIds = new [] { "routeTableIds" },
VpnGatewayId = "vpnGatewayId"
};
Synopsis
Constructors
CfnVPNGatewayRoutePropagationProps() | Properties for defining a |
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
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.
VpnGatewayId
The ID of the virtual private gateway that is attached to a VPC.
public string VpnGatewayId { get; set; }
Property Value
Remarks
The virtual private gateway must be attached to the same VPC that the routing tables are associated with.