interface CfnConnectionMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.CodeStarConnections.CfnConnectionMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awscodestarconnections#CfnConnectionMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.codestarconnections.CfnConnectionMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_codestarconnections.CfnConnectionMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_codestarconnections » 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_codestarconnections as codestarconnections } from '@aws-cdk/cfn-property-mixins';
const cfnConnectionMixinProps: codestarconnections.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 the resource. |
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 the resource.

.NET
Go
Java
Python
TypeScript