Class VpnGatewayProps
The VpnGateway Properties.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.EC2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class VpnGatewayProps : IVpnGatewayProps
Syntax (vb)
Public Class VpnGatewayProps Implements IVpnGatewayProps
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 vpnGatewayProps = new VpnGatewayProps {
Type = "type",
// the properties below are optional
AmazonSideAsn = 123
};
Synopsis
Constructors
| VpnGatewayProps() | The VpnGateway Properties. |
Properties
| AmazonSideAsn | Explicitly specify an Asn or let aws pick an Asn for you. |
| Type | Default type ipsec.1. |
Constructors
VpnGatewayProps()
The VpnGateway Properties.
public VpnGatewayProps()
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 vpnGatewayProps = new VpnGatewayProps {
Type = "type",
// the properties below are optional
AmazonSideAsn = 123
};
Properties
AmazonSideAsn
Explicitly specify an Asn or let aws pick an Asn for you.
public double? AmazonSideAsn { get; set; }
Property Value
Remarks
Default: 65000
Type
Default type ipsec.1.
public string Type { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated