CfnLocalGatewayVirtualInterfaceGroupMixinProps
- class aws_cdk.mixins_preview.aws_ec2.mixins.CfnLocalGatewayVirtualInterfaceGroupMixinProps(*, local_bgp_asn=None, local_bgp_asn_extended=None, local_gateway_id=None, tags=None)
Bases:
objectProperties for CfnLocalGatewayVirtualInterfaceGroupPropsMixin.
- Parameters:
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.local_gateway_id (
Optional[str]) – The ID of the local gateway.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.mixins_preview.aws_ec2 import mixins as ec2_mixins cfn_local_gateway_virtual_interface_group_mixin_props = ec2_mixins.CfnLocalGatewayVirtualInterfaceGroupMixinProps( local_bgp_asn=123, local_bgp_asn_extended=123, local_gateway_id="localGatewayId", 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.