CfnConnectionMixinProps
- class aws_cdk.cfn_property_mixins.aws_directconnect.CfnConnectionMixinProps(*, bandwidth=None, connection_name=None, lag_id=None, location=None, provider_name=None, request_mac_sec=None, tags=None)
Bases:
objectProperties for CfnConnectionPropsMixin.
- Parameters:
bandwidth (
Optional[str]) – The bandwidth of the connection.connection_name (
Optional[str]) – The name of the connection.lag_id (
Union[str,ILagRef,None])location (
Optional[str]) – The location of the connection.provider_name (
Optional[str]) – The name of the service provider associated with the requested connection.request_mac_sec (
Union[bool,IResolvable,None]) – Indicates whether you want the connection to support MAC Security (MACsec).tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – The tags associated with the connection.
- 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_connection_mixin_props = directconnect.CfnConnectionMixinProps( bandwidth="bandwidth", connection_name="connectionName", lag_id="lagId", location="location", provider_name="providerName", request_mac_sec=False, tags=[CfnTag( key="key", value="value" )] )
Attributes
- bandwidth
The bandwidth of the connection.
- connection_name
The name of the connection.
- lag_id
-
- Type:
see
- location
The location of the connection.
- provider_name
The name of the service provider associated with the requested connection.
- request_mac_sec
Indicates whether you want the connection to support MAC Security (MACsec).
- tags
The tags associated with the connection.