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