class CfnWorkflowVersionPropsMixin
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Omics.Mixins.CfnWorkflowVersionPropsMixin |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsomics/mixins#CfnWorkflowVersionPropsMixin |
Java | software.amazon.awscdk.mixins.preview.services.omics.mixins.CfnWorkflowVersionPropsMixin |
Python | aws_cdk.mixins_preview.aws_omics.mixins.CfnWorkflowVersionPropsMixin |
TypeScript | @aws-cdk/mixins-preview » aws_omics » mixins » CfnWorkflowVersionPropsMixin |
Implements
IMixin
Extends
Mixin
Creates a new workflow version for the workflow that you specify with the workflowId parameter.
When you create a new version of a workflow, you need to specify the configuration for the new version. It doesn't inherit any configuration values from the workflow.
Provide a version name that is unique for this workflow. You cannot change the name after HealthOmics creates the version.
Don't include any personally identifiable information (PII) in the version name. Version names appear in the workflow version ARN.
For more information, see Workflow versioning in AWS HealthOmics in the AWS HealthOmics User Guide .
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins } from '@aws-cdk/mixins-preview';
import { mixins as omics_mixins } from '@aws-cdk/mixins-preview/aws-omics';
const cfnWorkflowVersionPropsMixin = new omics_mixins.CfnWorkflowVersionPropsMixin({
accelerators: 'accelerators',
containerRegistryMap: {
imageMappings: [{
destinationImage: 'destinationImage',
sourceImage: 'sourceImage',
}],
registryMappings: [{
ecrAccountId: 'ecrAccountId',
ecrRepositoryPrefix: 'ecrRepositoryPrefix',
upstreamRegistryUrl: 'upstreamRegistryUrl',
upstreamRepositoryPrefix: 'upstreamRepositoryPrefix',
}],
},
containerRegistryMapUri: 'containerRegistryMapUri',
definitionRepository: {
connectionArn: 'connectionArn',
excludeFilePatterns: ['excludeFilePatterns'],
fullRepositoryId: 'fullRepositoryId',
sourceReference: {
type: 'type',
value: 'value',
},
},
definitionUri: 'definitionUri',
description: 'description',
engine: 'engine',
main: 'main',
parameterTemplate: {
parameterTemplateKey: {
description: 'description',
optional: false,
},
},
parameterTemplatePath: 'parameterTemplatePath',
readmeMarkdown: 'readmeMarkdown',
readmePath: 'readmePath',
readmeUri: 'readmeUri',
storageCapacity: 123,
storageType: 'storageType',
tags: {
tagsKey: 'tags',
},
versionName: 'versionName',
workflowBucketOwnerId: 'workflowBucketOwnerId',
workflowId: 'workflowId',
}, /* all optional props */ {
strategy: mixins.PropertyMergeStrategy.OVERRIDE,
});
Initializer
new CfnWorkflowVersionPropsMixin(props: CfnWorkflowVersionMixinProps, options?: CfnPropertyMixinOptions)
Parameters
- props
Cfn— L1 properties to apply.Workflow Version Mixin Props - options
Cfn— Mixin options.Property Mixin Options
Create a mixin to apply properties to AWS::Omics::WorkflowVersion.
Properties
| Name | Type | Description |
|---|---|---|
| props | Cfn | |
| strategy | Property | |
| static CFN_PROPERTY_KEYS | string[] |
props
Type:
Cfn
strategy
Type:
Property
static CFN_PROPERTY_KEYS
Type:
string[]
Methods
| Name | Description |
|---|---|
| apply | Apply the mixin properties to the construct. |
| supports(construct) | Check if this mixin supports the given construct. |
applyTo(construct)
public applyTo(construct: IConstruct): IConstruct
Parameters
- construct
IConstruct
Returns
Apply the mixin properties to the construct.
supports(construct)
public supports(construct: IConstruct): boolean
Parameters
- construct
IConstruct
Returns
boolean
Check if this mixin supports the given construct.

.NET
Go
Java
Python
TypeScript