interface AttachPointProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Interconnect.CfnConnection.AttachPointProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsinterconnect#CfnConnection_AttachPointProperty |
Java | software.amazon.awscdk.services.interconnect.CfnConnection.AttachPointProperty |
Python | aws_cdk.aws_interconnect.CfnConnection.AttachPointProperty |
TypeScript | aws-cdk-lib » aws_interconnect » CfnConnection » 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-lib';
const attachPointProperty: interconnect.CfnConnection.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