CfnLocalGatewayVirtualInterfaceMixinProps
- class aws_cdk.mixins_preview.aws_ec2.mixins.CfnLocalGatewayVirtualInterfaceMixinProps(*, local_address=None, local_gateway_virtual_interface_group_id=None, outpost_lag_id=None, peer_address=None, peer_bgp_asn=None, peer_bgp_asn_extended=None, tags=None, vlan=None)
Bases:
objectProperties for CfnLocalGatewayVirtualInterfacePropsMixin.
- Parameters:
local_address (
Optional[str]) – The local address.local_gateway_virtual_interface_group_id (
Optional[str]) – The ID of the local gateway virtual interface group.outpost_lag_id (
Optional[str]) – The Outpost LAG ID.peer_address (
Optional[str]) – The peer address.peer_bgp_asn (
Union[int,float,None]) – The peer BGP ASN.peer_bgp_asn_extended (
Union[int,float,None]) – The extended 32-bit ASN of the BGP peer for use with larger ASN values.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – The tags assigned to the virtual interface.vlan (
Union[int,float,None]) – The ID of the VLAN.
- 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_mixin_props = ec2_mixins.CfnLocalGatewayVirtualInterfaceMixinProps( local_address="localAddress", local_gateway_virtual_interface_group_id="localGatewayVirtualInterfaceGroupId", outpost_lag_id="outpostLagId", peer_address="peerAddress", peer_bgp_asn=123, peer_bgp_asn_extended=123, tags=[CfnTag( key="key", value="value" )], vlan=123 )
Attributes
- local_address
The local address.
- local_gateway_virtual_interface_group_id
The ID of the local gateway virtual interface group.
- outpost_lag_id
The Outpost LAG ID.
- peer_address
The peer address.
- peer_bgp_asn
The peer BGP ASN.
- peer_bgp_asn_extended
The extended 32-bit ASN of the BGP peer for use with larger ASN values.
- tags
The tags assigned to the virtual interface.