interface DefinitionRepositoryProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Omics.Mixins.CfnWorkflowVersionPropsMixin.DefinitionRepositoryProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsomics/mixins#CfnWorkflowVersionPropsMixin_DefinitionRepositoryProperty |
Java | software.amazon.awscdk.mixins.preview.services.omics.mixins.CfnWorkflowVersionPropsMixin.DefinitionRepositoryProperty |
Python | aws_cdk.mixins_preview.aws_omics.mixins.CfnWorkflowVersionPropsMixin.DefinitionRepositoryProperty |
TypeScript | @aws-cdk/mixins-preview » aws_omics » mixins » CfnWorkflowVersionPropsMixin » DefinitionRepositoryProperty |
Contains information about a source code repository that hosts the workflow definition files.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as omics_mixins } from '@aws-cdk/mixins-preview/aws-omics';
const definitionRepositoryProperty: omics_mixins.CfnWorkflowVersionPropsMixin.DefinitionRepositoryProperty = {
connectionArn: 'connectionArn',
excludeFilePatterns: ['excludeFilePatterns'],
fullRepositoryId: 'fullRepositoryId',
sourceReference: {
type: 'type',
value: 'value',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| connection | string | The Amazon Resource Name (ARN) of the connection to the source code repository. |
| exclude | string[] | A list of file patterns to exclude when retrieving the workflow definition from the repository. |
| full | string | The full repository identifier, including the repository owner and name. |
| source | IResolvable | Source | The source reference for the repository, such as a branch name, tag, or commit ID. |
connectionArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the connection to the source code repository.
excludeFilePatterns?
Type:
string[]
(optional)
A list of file patterns to exclude when retrieving the workflow definition from the repository.
fullRepositoryId?
Type:
string
(optional)
The full repository identifier, including the repository owner and name.
For example, 'repository-owner/repository-name'.
sourceReference?
Type:
IResolvable | Source
(optional)
The source reference for the repository, such as a branch name, tag, or commit ID.

.NET
Go
Java
Python
TypeScript