interface CfnConnectAttachmentMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.NetworkManager.Mixins.CfnConnectAttachmentMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsnetworkmanager/mixins#CfnConnectAttachmentMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.networkmanager.mixins.CfnConnectAttachmentMixinProps |
Python | aws_cdk.mixins_preview.aws_networkmanager.mixins.CfnConnectAttachmentMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_networkmanager » mixins » CfnConnectAttachmentMixinProps |
Properties for CfnConnectAttachmentPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as networkmanager_mixins } from '@aws-cdk/mixins-preview/aws-networkmanager';
const cfnConnectAttachmentMixinProps: networkmanager_mixins.CfnConnectAttachmentMixinProps = {
coreNetworkId: 'coreNetworkId',
edgeLocation: 'edgeLocation',
networkFunctionGroupName: 'networkFunctionGroupName',
options: {
protocol: 'protocol',
},
proposedNetworkFunctionGroupChange: {
attachmentPolicyRuleNumber: 123,
networkFunctionGroupName: 'networkFunctionGroupName',
tags: [{
key: 'key',
value: 'value',
}],
},
proposedSegmentChange: {
attachmentPolicyRuleNumber: 123,
segmentName: 'segmentName',
tags: [{
key: 'key',
value: 'value',
}],
},
routingPolicyLabel: 'routingPolicyLabel',
tags: [{
key: 'key',
value: 'value',
}],
transportAttachmentId: 'transportAttachmentId',
};
Properties
| Name | Type | Description |
|---|---|---|
| core | string | The ID of the core network where the Connect attachment is located. |
| edge | string | The Region where the edge is located. |
| network | string | The name of the network function group. |
| options? | IResolvable | Connect | Options for connecting an attachment. |
| proposed | IResolvable | Proposed | Describes proposed changes to a network function group. |
| proposed | IResolvable | Proposed | Describes a proposed segment change. |
| routing | string | Routing policy label. |
| tags? | Cfn[] | The tags associated with the Connect attachment. |
| transport | string | The ID of the transport attachment. |
coreNetworkId?
Type:
string
(optional)
The ID of the core network where the Connect attachment is located.
edgeLocation?
Type:
string
(optional)
The Region where the edge is located.
networkFunctionGroupName?
Type:
string
(optional)
The name of the network function group.
options?
Type:
IResolvable | Connect
(optional)
Options for connecting an attachment.
proposedNetworkFunctionGroupChange?
Type:
IResolvable | Proposed
(optional)
Describes proposed changes to a network function group.
proposedSegmentChange?
Type:
IResolvable | Proposed
(optional)
Describes a proposed segment change.
In some cases, the segment change must first be evaluated and accepted.
routingPolicyLabel?
Type:
string
(optional)
Routing policy label.
tags?
Type:
Cfn[]
(optional)
The tags associated with the Connect attachment.
transportAttachmentId?
Type:
string
(optional)
The ID of the transport attachment.

.NET
Go
Java
Python
TypeScript