CfnWorkflowProps

class aws_cdk.aws_omics.CfnWorkflowProps(*, accelerators=None, 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:
  • accelerators (Optional[str]) –

  • 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 gibibytes.

  • tags (Optional[Mapping[str, str]]) – Tags for the workflow.

See:

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.
from aws_cdk import aws_omics as omics

cfn_workflow_props = omics.CfnWorkflowProps(
    accelerators="accelerators",
    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

accelerators

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-workflow.html#cfn-omics-workflow-accelerators

Type:

see

definition_uri

The URI of a definition for the workflow.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-workflow.html#cfn-omics-workflow-definitionuri

description

The parameter’s description.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-workflow.html#cfn-omics-workflow-description

engine

An engine for the workflow.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-workflow.html#cfn-omics-workflow-engine

main

The path of the main definition file for the workflow.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-workflow.html#cfn-omics-workflow-main

name

The workflow’s name.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-workflow.html#cfn-omics-workflow-name

parameter_template

The workflow’s parameter template.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-workflow.html#cfn-omics-workflow-parametertemplate

storage_capacity

A storage capacity for the workflow in gibibytes.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-workflow.html#cfn-omics-workflow-storagecapacity

tags

Tags for the workflow.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-workflow.html#cfn-omics-workflow-tags