Show / Hide Table of Contents

Class CfnVPNGatewayProps

Properties for defining a CfnVPNGateway.

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpngateway.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 cfnVPNGatewayProps = new CfnVPNGatewayProps {
                 Type = "type",

                 // the properties below are optional
                 AmazonSideAsn = 123,
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Synopsis

Constructors

CfnVPNGatewayProps()

Properties for defining a CfnVPNGateway.

Properties

AmazonSideAsn

The private Autonomous System Number (ASN) for the Amazon side of a BGP session.

Tags

Any tags assigned to the virtual private gateway.

Type

The type of VPN connection the virtual private gateway supports.

Constructors

CfnVPNGatewayProps()

Properties for defining a CfnVPNGateway.

public CfnVPNGatewayProps()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpngateway.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 cfnVPNGatewayProps = new CfnVPNGatewayProps {
                 Type = "type",

                 // the properties below are optional
                 AmazonSideAsn = 123,
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Properties

AmazonSideAsn

The private Autonomous System Number (ASN) for the Amazon side of a BGP session.

public double? AmazonSideAsn { get; set; }
Property Value

double?

Remarks

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

Tags

Any tags assigned to the virtual private gateway.

public ICfnTag[]? Tags { get; set; }
Property Value

ICfnTag[]

Remarks

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

Type

The type of VPN connection the virtual private gateway supports.

public string Type { get; set; }
Property Value

string

Remarks

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

Implements

ICfnVPNGatewayProps
Back to top Generated by DocFX