interface CfnRepositoryLinkMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CodeStarConnections.Mixins.CfnRepositoryLinkMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscodestarconnections/mixins#CfnRepositoryLinkMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.codestarconnections.mixins.CfnRepositoryLinkMixinProps |
Python | aws_cdk.mixins_preview.aws_codestarconnections.mixins.CfnRepositoryLinkMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_codestarconnections » mixins » CfnRepositoryLinkMixinProps |
Properties for CfnRepositoryLinkPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as codestarconnections_mixins } from '@aws-cdk/mixins-preview/aws-codestarconnections';
const cfnRepositoryLinkMixinProps: codestarconnections_mixins.CfnRepositoryLinkMixinProps = {
connectionArn: 'connectionArn',
encryptionKeyArn: 'encryptionKeyArn',
ownerId: 'ownerId',
repositoryName: 'repositoryName',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| connection | string | The Amazon Resource Name (ARN) of the connection associated with the repository link. |
| encryption | string | The Amazon Resource Name (ARN) of the encryption key for the repository associated with the repository link. |
| owner | string | The owner ID for the repository associated with the repository link, such as the owner ID in GitHub. |
| repository | string | The name of the repository associated with the repository link. |
| tags? | Cfn[] | The tags for the repository to be associated with the repository link. |
connectionArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the connection associated with the repository link.
encryptionKeyArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the encryption key for the repository associated with the repository link.
ownerId?
Type:
string
(optional)
The owner ID for the repository associated with the repository link, such as the owner ID in GitHub.
repositoryName?
Type:
string
(optional)
The name of the repository associated with the repository link.
tags?
Type:
Cfn[]
(optional)
The tags for the repository to be associated with the repository link.

.NET
Go
Java
Python
TypeScript