CfnConnectAttachmentProps

class aws_cdk.aws_networkmanager.CfnConnectAttachmentProps(*, core_network_id, edge_location, options, transport_attachment_id, proposed_segment_change=None, tags=None)

Bases: object

Properties for defining a CfnConnectAttachment.

Parameters:
  • core_network_id (str) – The ID of the core network where the Connect attachment is located.

  • edge_location (str) – The Region where the edge is located.

  • options (Union[IResolvable, ConnectAttachmentOptionsProperty, Dict[str, Any]]) – Options for connecting an attachment.

  • transport_attachment_id (str) – The ID of the transport attachment.

  • proposed_segment_change (Union[IResolvable, ProposedSegmentChangeProperty, Dict[str, Any], None]) – Describes a proposed segment change. In some cases, the segment change must first be evaluated and accepted.

  • tags (Optional[Sequence[Union[CfnTag, Dict[str, Any]]]]) – Tags for the attachment.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-connectattachment.html

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 import aws_networkmanager as networkmanager

cfn_connect_attachment_props = networkmanager.CfnConnectAttachmentProps(
    core_network_id="coreNetworkId",
    edge_location="edgeLocation",
    options=networkmanager.CfnConnectAttachment.ConnectAttachmentOptionsProperty(
        protocol="protocol"
    ),
    transport_attachment_id="transportAttachmentId",

    # the properties below are optional
    proposed_segment_change=networkmanager.CfnConnectAttachment.ProposedSegmentChangeProperty(
        attachment_policy_rule_number=123,
        segment_name="segmentName",
        tags=[CfnTag(
            key="key",
            value="value"
        )]
    ),
    tags=[CfnTag(
        key="key",
        value="value"
    )]
)

Attributes

core_network_id

The ID of the core network where the Connect attachment is located.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-connectattachment.html#cfn-networkmanager-connectattachment-corenetworkid

edge_location

The Region where the edge is located.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-connectattachment.html#cfn-networkmanager-connectattachment-edgelocation

options

Options for connecting an attachment.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-connectattachment.html#cfn-networkmanager-connectattachment-options

proposed_segment_change

Describes a proposed segment change.

In some cases, the segment change must first be evaluated and accepted.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-connectattachment.html#cfn-networkmanager-connectattachment-proposedsegmentchange

tags

Tags for the attachment.

See:

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

transport_attachment_id

The ID of the transport attachment.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-connectattachment.html#cfn-networkmanager-connectattachment-transportattachmentid