interface ConnectionReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Interconnect.ConnectionReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsinterconnect#ConnectionReference |
Java | software.amazon.awscdk.interfaces.interconnect.ConnectionReference |
Python | aws_cdk.interfaces.aws_interconnect.ConnectionReference |
TypeScript | aws-cdk-lib » interfaces » aws_interconnect » ConnectionReference |
A reference to a Connection resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_interconnect as interfaces_interconnect } from 'aws-cdk-lib/interfaces';
const connectionReference: interfaces_interconnect.ConnectionReference = {
connectionArn: 'connectionArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| connection | string | The Arn of the Connection resource. |
connectionArn
Type:
string
The Arn of the Connection resource.

.NET
Go
Java
Python
TypeScript