CfnWorkflowProps
- class aws_cdk.aws_omics.CfnWorkflowProps(*, definition_uri=None, description=None, engine=None, main=None, name=None, parameter_template=None, storage_capacity=None, tags=None)
Bases:
object
Properties for defining a
CfnWorkflow
.- Parameters:
definition_uri (
Optional
[str
]) – The URI of a definition for the workflow.description (
Optional
[str
]) – The parameter’s description.engine (
Optional
[str
]) – An engine for the workflow.main (
Optional
[str
]) – The path of the main definition file for the workflow.name (
Optional
[str
]) – The workflow’s name.parameter_template (
Union
[IResolvable
,Mapping
[str
,Union
[IResolvable
,WorkflowParameterProperty
,Dict
[str
,Any
]]],None
]) – The workflow’s parameter template.storage_capacity (
Union
[int
,float
,None
]) – A storage capacity for the workflow in gigabytes.tags (
Optional
[Mapping
[str
,str
]]) – Tags for the workflow.
- Link:
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-workflow.html
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_omics as omics cfn_workflow_props = omics.CfnWorkflowProps( definition_uri="definitionUri", description="description", engine="engine", main="main", name="name", parameter_template={ "parameter_template_key": omics.CfnWorkflow.WorkflowParameterProperty( description="description", optional=False ) }, storage_capacity=123, tags={ "tags_key": "tags" } )
Attributes
- definition_uri
The URI of a definition for the workflow.
- description
The parameter’s description.
- engine
An engine for the workflow.
- main
The path of the main definition file for the workflow.
- name
The workflow’s name.
- parameter_template
The workflow’s parameter template.
- storage_capacity
A storage capacity for the workflow in gigabytes.
- tags
Tags for the workflow.