CfnPublicVirtualInterfaceMixinProps
- class aws_cdk.cfn_property_mixins.aws_directconnect.CfnPublicVirtualInterfaceMixinProps(*, allocate_public_virtual_interface_role_arn=None, bgp_peers=None, connection_id=None, rate_limit=None, route_filter_prefixes=None, tags=None, virtual_interface_name=None, vlan=None)
Bases:
objectProperties for CfnPublicVirtualInterfacePropsMixin.
- Parameters:
allocate_public_virtual_interface_role_arn (
Optional[str]) – The Amazon Resource Name (ARN) of the role to allocate the public virtual interface. Needs directconnect:AllocatePublicVirtualInterface permissions and tag permissions if applicable.bgp_peers (
Union[IResolvable,Sequence[Union[IResolvable,BgpPeerProperty,Dict[str,Any]]],None]) – The BGP peers configured on this virtual interface.connection_id (
Union[str,IConnectionRef,ILagRef,None])rate_limit (
Optional[str]) – The rate limit (bandwidth allocation) for the virtual interface. The value must be one of the supported bandwidth values (e.g., 50Mbps, 1Gbps, 10Gbps) and cannot exceed the bandwidth of the parent connection or LAG.route_filter_prefixes (
Optional[Sequence[str]]) – The routes to be advertised to the AWS network in this region.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – The tags associated with the public virtual interface.virtual_interface_name (
Optional[str]) – The name of the virtual interface assigned by the customer network. The name has a maximum of 100 characters. The following are valid characters: a-z, 0-9 and a hyphen (-).vlan (
Union[int,float,None]) – The ID of the VLAN.
- See:
- ExampleMetadata:
fixture=_generated
Example:
from aws_cdk import CfnTag # The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.cfn_property_mixins import aws_directconnect as directconnect cfn_public_virtual_interface_mixin_props = directconnect.CfnPublicVirtualInterfaceMixinProps( allocate_public_virtual_interface_role_arn="allocatePublicVirtualInterfaceRoleArn", bgp_peers=[directconnect.CfnPublicVirtualInterfacePropsMixin.BgpPeerProperty( address_family="addressFamily", amazon_address="amazonAddress", asn="asn", auth_key="authKey", bgp_peer_id="bgpPeerId", customer_address="customerAddress" )], connection_id="connectionId", rate_limit="rateLimit", route_filter_prefixes=["routeFilterPrefixes"], tags=[CfnTag( key="key", value="value" )], virtual_interface_name="virtualInterfaceName", vlan=123 )
Attributes
- allocate_public_virtual_interface_role_arn
The Amazon Resource Name (ARN) of the role to allocate the public virtual interface.
Needs directconnect:AllocatePublicVirtualInterface permissions and tag permissions if applicable.
- bgp_peers
The BGP peers configured on this virtual interface.
- connection_id
-
- Type:
see
- rate_limit
The rate limit (bandwidth allocation) for the virtual interface.
The value must be one of the supported bandwidth values (e.g., 50Mbps, 1Gbps, 10Gbps) and cannot exceed the bandwidth of the parent connection or LAG.
- route_filter_prefixes
The routes to be advertised to the AWS network in this region.
- tags
The tags associated with the public virtual interface.
- virtual_interface_name
The name of the virtual interface assigned by the customer network.
The name has a maximum of 100 characters. The following are valid characters: a-z, 0-9 and a hyphen (-).