interface CfnWorkflowProps
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.Omics.CfnWorkflowProps |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsomics#CfnWorkflowProps |
![]() | software.amazon.awscdk.services.omics.CfnWorkflowProps |
![]() | aws_cdk.aws_omics.CfnWorkflowProps |
![]() | aws-cdk-lib » aws_omics » CfnWorkflowProps |
Properties for defining a CfnWorkflow
.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-workflow.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_omics as omics } from 'aws-cdk-lib';
const cfnWorkflowProps: omics.CfnWorkflowProps = {
accelerators: 'accelerators',
definitionUri: 'definitionUri',
description: 'description',
engine: 'engine',
main: 'main',
name: 'name',
parameterTemplate: {
parameterTemplateKey: {
description: 'description',
optional: false,
},
},
storageCapacity: 123,
storageType: 'storageType',
tags: {
tagsKey: 'tags',
},
};
Properties
Name | Type | Description |
---|---|---|
accelerators? | string | |
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 | The default static storage capacity (in gibibytes) for runs that use this workflow or workflow version. |
storage | string | |
tags? | { [string]: string } | Tags for the workflow. |
accelerators?
Type:
string
(optional)
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)
The default static storage capacity (in gibibytes) for runs that use this workflow or workflow version.
The storageCapacity
can be overwritten at run time. The storage capacity is not required for runs with a DYNAMIC
storage type.
storageType?
Type:
string
(optional)
tags?
Type:
{ [string]: string }
(optional)
Tags for the workflow.