interface SourceReferenceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Omics.Mixins.CfnWorkflowVersionPropsMixin.SourceReferenceProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsomics/mixins#CfnWorkflowVersionPropsMixin_SourceReferenceProperty |
Java | software.amazon.awscdk.mixins.preview.services.omics.mixins.CfnWorkflowVersionPropsMixin.SourceReferenceProperty |
Python | aws_cdk.mixins_preview.aws_omics.mixins.CfnWorkflowVersionPropsMixin.SourceReferenceProperty |
TypeScript | @aws-cdk/mixins-preview » aws_omics » mixins » CfnWorkflowVersionPropsMixin » SourceReferenceProperty |
Contains information about the source reference in a code repository, such as a branch, tag, or commit.
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 sourceReferenceProperty: omics_mixins.CfnWorkflowVersionPropsMixin.SourceReferenceProperty = {
type: 'type',
value: 'value',
};
Properties
| Name | Type | Description |
|---|---|---|
| type? | string | The type of source reference, such as branch, tag, or commit. |
| value? | string | The value of the source reference, such as the branch name, tag name, or commit ID. |
type?
Type:
string
(optional)
The type of source reference, such as branch, tag, or commit.
value?
Type:
string
(optional)
The value of the source reference, such as the branch name, tag name, or commit ID.

.NET
Go
Java
Python
TypeScript