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: object

Properties 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:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directconnect-connection.html

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.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directconnect-connection.html#cfn-directconnect-connection-bandwidth

connection_name

The name of the connection.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directconnect-connection.html#cfn-directconnect-connection-connectionname

lag_id

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directconnect-connection.html#cfn-directconnect-connection-lagid

Type:

see

location

The location of the connection.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directconnect-connection.html#cfn-directconnect-connection-location

provider_name

The name of the service provider associated with the requested connection.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directconnect-connection.html#cfn-directconnect-connection-providername

request_mac_sec

Indicates whether you want the connection to support MAC Security (MACsec).

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directconnect-connection.html#cfn-directconnect-connection-requestmacsec

tags

The tags associated with the connection.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directconnect-connection.html#cfn-directconnect-connection-tags