interface CfnDirectConnectGatewayAttachmentMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.NetworkManager.Mixins.CfnDirectConnectGatewayAttachmentMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsnetworkmanager/mixins#CfnDirectConnectGatewayAttachmentMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.networkmanager.mixins.CfnDirectConnectGatewayAttachmentMixinProps |
Python | aws_cdk.mixins_preview.aws_networkmanager.mixins.CfnDirectConnectGatewayAttachmentMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_networkmanager » mixins » CfnDirectConnectGatewayAttachmentMixinProps |
Properties for CfnDirectConnectGatewayAttachmentPropsMixin.
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 cfnDirectConnectGatewayAttachmentMixinProps: networkmanager_mixins.CfnDirectConnectGatewayAttachmentMixinProps = {
coreNetworkId: 'coreNetworkId',
directConnectGatewayArn: 'directConnectGatewayArn',
edgeLocations: ['edgeLocations'],
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
(optional)
The ID of a core network for the Direct Connect Gateway attachment.
directConnectGatewayArn?
Type:
string
(optional)
The Direct Connect gateway attachment ARN.
edgeLocations?
Type:
string[]
(optional)
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