Show / Hide Table of Contents

Class CfnVPNGatewayMixinProps

Properties for CfnVPNGatewayPropsMixin.

Inheritance
object
CfnVPNGatewayMixinProps
Implements
ICfnVPNGatewayMixinProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.Mixins.Preview.AWS.EC2.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnVPNGatewayMixinProps : ICfnVPNGatewayMixinProps
Syntax (vb)
Public Class CfnVPNGatewayMixinProps Implements ICfnVPNGatewayMixinProps
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.Mixins.Preview.AWS.EC2.Mixins;

             var cfnVPNGatewayMixinProps = new CfnVPNGatewayMixinProps {
                 AmazonSideAsn = 123,
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } },
                 Type = "type"
             };

Synopsis

Constructors

CfnVPNGatewayMixinProps()

Properties for CfnVPNGatewayPropsMixin.

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

CfnVPNGatewayMixinProps()

Properties for CfnVPNGatewayPropsMixin.

public CfnVPNGatewayMixinProps()
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.Mixins.Preview.AWS.EC2.Mixins;

             var cfnVPNGatewayMixinProps = new CfnVPNGatewayMixinProps {
                 AmazonSideAsn = 123,
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } },
                 Type = "type"
             };

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

ICfnVPNGatewayMixinProps
Back to top Generated by DocFX