interface CfnDirectConnectGatewayAttachmentProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.NetworkManager.CfnDirectConnectGatewayAttachmentProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsnetworkmanager#CfnDirectConnectGatewayAttachmentProps |
Java | software.amazon.awscdk.services.networkmanager.CfnDirectConnectGatewayAttachmentProps |
Python | aws_cdk.aws_networkmanager.CfnDirectConnectGatewayAttachmentProps |
TypeScript | aws-cdk-lib » aws_networkmanager » CfnDirectConnectGatewayAttachmentProps |
Properties for defining a CfnDirectConnectGatewayAttachment.
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 cfnDirectConnectGatewayAttachmentProps: networkmanager.CfnDirectConnectGatewayAttachmentProps = {
coreNetworkId: 'coreNetworkId',
directConnectGatewayArn: 'directConnectGatewayArn',
edgeLocations: ['edgeLocations'],
// the properties below are optional
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',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| core | string | The ID of a core network for the Direct Connect Gateway attachment. |
| direct | string | The Direct Connect gateway attachment ARN. |
| edge | string[] | The Regions where the edges are located. |
| 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[] | Tags for the attachment. |
coreNetworkId
Type:
string
The ID of a core network for the Direct Connect Gateway attachment.
directConnectGatewayArn
Type:
string
The Direct Connect gateway attachment ARN.
edgeLocations
Type:
string[]
The Regions where the edges are located.
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)
Tags for the attachment.

.NET
Go
Java
Python
TypeScript