aws-cdk-lib.aws_networkmanager.CfnConnectAttachmentProps

interface CfnConnectAttachmentProps

LanguageType name
.NETAmazon.CDK.AWS.NetworkManager.CfnConnectAttachmentProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsnetworkmanager#CfnConnectAttachmentProps
Javasoftware.amazon.awscdk.services.networkmanager.CfnConnectAttachmentProps
Pythonaws_cdk.aws_networkmanager.CfnConnectAttachmentProps
TypeScript aws-cdk-lib » aws_networkmanager » CfnConnectAttachmentProps

Properties for defining a CfnConnectAttachment.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_networkmanager as networkmanager } from 'aws-cdk-lib';
const cfnConnectAttachmentProps: networkmanager.CfnConnectAttachmentProps = {
  coreNetworkId: 'coreNetworkId',
  edgeLocation: 'edgeLocation',
  options: {
    protocol: 'protocol',
  },
  transportAttachmentId: 'transportAttachmentId',

  // the properties below are optional
  proposedSegmentChange: {
    attachmentPolicyRuleNumber: 123,
    segmentName: 'segmentName',
    tags: [{
      key: 'key',
      value: 'value',
    }],
  },
  tags: [{
    key: 'key',
    value: 'value',
  }],
};

Properties

NameTypeDescription
coreNetworkIdstringThe ID of the core network where the Connect attachment is located.
edgeLocationstringThe Region where the edge is located.
optionsIResolvable | ConnectAttachmentOptionsPropertyOptions for connecting an attachment.
transportAttachmentIdstringThe ID of the transport attachment.
proposedSegmentChange?IResolvable | ProposedSegmentChangePropertyAWS::NetworkManager::ConnectAttachment.ProposedSegmentChange.
tags?CfnTag[]AWS::NetworkManager::ConnectAttachment.Tags.

coreNetworkId

Type: string

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


edgeLocation

Type: string

The Region where the edge is located.


options

Type: IResolvable | ConnectAttachmentOptionsProperty

Options for connecting an attachment.


transportAttachmentId

Type: string

The ID of the transport attachment.


proposedSegmentChange?

Type: IResolvable | ProposedSegmentChangeProperty (optional)

AWS::NetworkManager::ConnectAttachment.ProposedSegmentChange.


tags?

Type: CfnTag[] (optional)

AWS::NetworkManager::ConnectAttachment.Tags.