interface CfnConnectionProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Interconnect.CfnConnectionProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsinterconnect#CfnConnectionProps |
Java | software.amazon.awscdk.services.interconnect.CfnConnectionProps |
Python | aws_cdk.aws_interconnect.CfnConnectionProps |
TypeScript | aws-cdk-lib » aws_interconnect » CfnConnectionProps |
Properties for defining a CfnConnection.
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 cfnConnectionProps: interconnect.CfnConnectionProps = {
attachPoint: {
arn: 'arn',
directConnectGateway: 'directConnectGateway',
},
// the properties below are optional
activationKey: 'activationKey',
bandwidth: 'bandwidth',
description: 'description',
environmentId: 'environmentId',
remoteOwnerAccount: 'remoteOwnerAccount',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| attach | IResolvable | Attach | The logical attachment point in your AWS network where the managed connection will be connected. |
| activation | string | The activation key for accepting a connection proposal from a partner CSP. |
| bandwidth? | string | The bandwidth of the connection (e.g., 50Mbps, 1Gbps). Required when creating a connection through AWS. |
| description? | string | A description of the connection. |
| environment | string | The ID of the environment for the connection. |
| remote | string | The account ID of the remote owner. |
| tags? | Cfn[] | An array of key-value pairs to apply to this resource. |
attachPoint
Type:
IResolvable | Attach
The logical attachment point in your AWS network where the managed connection will be connected.
activationKey?
Type:
string
(optional)
The activation key for accepting a connection proposal from a partner CSP.
Mutually exclusive with EnvironmentId.
bandwidth?
Type:
string
(optional)
The bandwidth of the connection (e.g., 50Mbps, 1Gbps). Required when creating a connection through AWS.
description?
Type:
string
(optional)
A description of the connection.
environmentId?
Type:
string
(optional)
The ID of the environment for the connection.
Required when creating a connection through AWS. Mutually exclusive with ActivationKey.
remoteOwnerAccount?
Type:
string
(optional)
The account ID of the remote owner.
Required when creating a connection through AWS.
tags?
Type:
Cfn[]
(optional)
An array of key-value pairs to apply to this resource.

.NET
Go
Java
Python
TypeScript