interface CfnConnectionMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CodeConnections.Mixins.CfnConnectionMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscodeconnections/mixins#CfnConnectionMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.codeconnections.mixins.CfnConnectionMixinProps |
Python | aws_cdk.mixins_preview.aws_codeconnections.mixins.CfnConnectionMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_codeconnections » mixins » 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 { mixins as codeconnections_mixins } from '@aws-cdk/mixins-preview/aws-codeconnections';
const cfnConnectionMixinProps: codeconnections_mixins.CfnConnectionMixinProps = {
connectionName: 'connectionName',
hostArn: 'hostArn',
providerType: 'providerType',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| connection | string | The name of the connection. |
| host | string | The Amazon Resource Name (ARN) of the host associated with the connection. |
| provider | string | The name of the external provider where your third-party code repository is configured. |
| tags? | Cfn[] | Specifies the tags applied to a connection. |
connectionName?
Type:
string
(optional)
The name of the connection.
Connection names must be unique in an AWS account .
hostArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the host associated with the connection.
providerType?
Type:
string
(optional)
The name of the external provider where your third-party code repository is configured.
tags?
Type:
Cfn[]
(optional)
Specifies the tags applied to a connection.

.NET
Go
Java
Python
TypeScript