interface CfnWorkflowProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Omics.CfnWorkflowProps |
Java | software.amazon.awscdk.services.omics.CfnWorkflowProps |
Python | aws_cdk.aws_omics.CfnWorkflowProps |
TypeScript | @aws-cdk/aws-omics » CfnWorkflowProps |
Properties for defining a CfnWorkflow.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as omics from '@aws-cdk/aws-omics';
const cfnWorkflowProps: omics.CfnWorkflowProps = {
definitionUri: 'definitionUri',
description: 'description',
engine: 'engine',
main: 'main',
name: 'name',
parameterTemplate: {
parameterTemplateKey: {
description: 'description',
optional: false,
},
},
storageCapacity: 123,
tags: {
tagsKey: 'tags',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| definition | string | The URI of a definition for the workflow. |
| description? | string | The parameter's description. |
| engine? | string | An engine for the workflow. |
| main? | string | The path of the main definition file for the workflow. |
| name? | string | The workflow's name. |
| parameter | IResolvable | { [string]: IResolvable | Workflow } | The workflow's parameter template. |
| storage | number | A storage capacity for the workflow in gigabytes. |
| tags? | { [string]: string } | Tags for the workflow. |
definitionUri?
Type:
string
(optional)
The URI of a definition for the workflow.
description?
Type:
string
(optional)
The parameter's description.
engine?
Type:
string
(optional)
An engine for the workflow.
main?
Type:
string
(optional)
The path of the main definition file for the workflow.
name?
Type:
string
(optional)
The workflow's name.
parameterTemplate?
Type:
IResolvable | { [string]: IResolvable | Workflow }
(optional)
The workflow's parameter template.
storageCapacity?
Type:
number
(optional)
A storage capacity for the workflow in gigabytes.
tags?
Type:
{ [string]: string }
(optional)
Tags for the workflow.

.NET
Java
Python
TypeScript