CfnLocalGatewayVirtualInterfaceGroupProps

class aws_cdk.aws_ec2.CfnLocalGatewayVirtualInterfaceGroupProps(*, local_gateway_id, local_bgp_asn=None, local_bgp_asn_extended=None, tags=None)

Bases: object

Properties for defining a CfnLocalGatewayVirtualInterfaceGroup.

Parameters:
  • local_gateway_id (str) – The ID of the local gateway.

  • local_bgp_asn (Union[int, float, None]) – The Autonomous System Number(ASN) for the local Border Gateway Protocol (BGP).

  • local_bgp_asn_extended (Union[int, float, None]) – The extended 32-bit ASN for the local BGP configuration.

  • tags (Optional[Sequence[Union[CfnTag, Dict[str, Any]]]]) – The tags assigned to the virtual interface group.

See:

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

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import aws_ec2 as ec2

cfn_local_gateway_virtual_interface_group_props = ec2.CfnLocalGatewayVirtualInterfaceGroupProps(
    local_gateway_id="localGatewayId",

    # the properties below are optional
    local_bgp_asn=123,
    local_bgp_asn_extended=123,
    tags=[CfnTag(
        key="key",
        value="value"
    )]
)

Attributes

local_bgp_asn

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

See:

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

local_bgp_asn_extended

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

See:

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

local_gateway_id

The ID of the local gateway.

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.

See:

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