interface CfnConnectionMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Interconnect.CfnConnectionMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsinterconnect#CfnConnectionMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.interconnect.CfnConnectionMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_interconnect.CfnConnectionMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_interconnect » CfnConnectionMixinProps |
Properties for CfnConnectionPropsMixin.
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 cfnConnectionMixinProps: interconnect.CfnConnectionMixinProps = {
activationKey: 'activationKey',
attachPoint: {
arn: 'arn',
directConnectGateway: 'directConnectGateway',
},
bandwidth: 'bandwidth',
description: 'description',
environmentId: 'environmentId',
remoteOwnerAccount: 'remoteOwnerAccount',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| activation | string | The activation key for accepting a connection proposal from a partner CSP. |
| attach | IResolvable | Attach | The logical attachment point in your AWS network where the managed connection will be connected. |
| 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. |
activationKey?
Type:
string
(optional)
The activation key for accepting a connection proposal from a partner CSP.
Mutually exclusive with EnvironmentId.
attachPoint?
Type:
IResolvable | Attach
(optional)
The logical attachment point in your AWS network where the managed connection will be connected.
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