interface AttachPointProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Interconnect.CfnConnectionPropsMixin.AttachPointProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsinterconnect#CfnConnectionPropsMixin_AttachPointProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.interconnect.CfnConnectionPropsMixin.AttachPointProperty |
Python | aws_cdk.cfn_property_mixins.aws_interconnect.CfnConnectionPropsMixin.AttachPointProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_interconnect » CfnConnectionPropsMixin » AttachPointProperty |
The logical attachment point in your AWS network where the managed connection will be connected.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_interconnect as interconnect } from '@aws-cdk/cfn-property-mixins';
const attachPointProperty: interconnect.CfnConnectionPropsMixin.AttachPointProperty = {
arn: 'arn',
directConnectGateway: 'directConnectGateway',
};
Properties
| Name | Type | Description |
|---|---|---|
| arn? | string | The ARN of the resource to attach to. |
| direct | string | The ID of the Direct Connect Gateway to attach to. |
arn?
Type:
string
(optional)
The ARN of the resource to attach to.
directConnectGateway?
Type:
string
(optional)
The ID of the Direct Connect Gateway to attach to.

.NET
Go
Java
Python
TypeScript