Show / Hide Table of Contents

Class CfnLocalGatewayVirtualInterfaceGroupProps

Properties for defining a CfnLocalGatewayVirtualInterfaceGroup.

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayvirtualinterfacegroup.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 cfnLocalGatewayVirtualInterfaceGroupProps = new CfnLocalGatewayVirtualInterfaceGroupProps {
                 LocalGatewayId = "localGatewayId",

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

Synopsis

Constructors

CfnLocalGatewayVirtualInterfaceGroupProps()

Properties for defining a CfnLocalGatewayVirtualInterfaceGroup.

Properties

LocalBgpAsn

The Autonomous System Number(ASN) for the local Border Gateway Protocol (BGP).

LocalBgpAsnExtended

The extended 32-bit ASN for the local BGP configuration.

LocalGatewayId

The ID of the local gateway.

Tags

The tags assigned to the virtual interface group.

Constructors

CfnLocalGatewayVirtualInterfaceGroupProps()

Properties for defining a CfnLocalGatewayVirtualInterfaceGroup.

public CfnLocalGatewayVirtualInterfaceGroupProps()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-localgatewayvirtualinterfacegroup.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 cfnLocalGatewayVirtualInterfaceGroupProps = new CfnLocalGatewayVirtualInterfaceGroupProps {
                 LocalGatewayId = "localGatewayId",

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

Properties

LocalBgpAsn

The Autonomous System Number(ASN) for the local Border Gateway Protocol (BGP).

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

double?

Remarks

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

LocalBgpAsnExtended

The extended 32-bit ASN for the local BGP configuration.

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

double?

Remarks

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

LocalGatewayId

The ID of the local gateway.

public string LocalGatewayId { get; set; }
Property Value

string

Remarks

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

Tags

The tags assigned to the virtual interface group.

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

ICfnTag[]

Remarks

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

Implements

ICfnLocalGatewayVirtualInterfaceGroupProps
Back to top Generated by DocFX