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:
- 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).
- local_bgp_asn_extended
The extended 32-bit ASN for the local BGP configuration.
- local_gateway_id
The ID of the local gateway.
- tags
The tags assigned to the virtual interface group.