aws-cdk-lib.aws_omics.CfnWorkflowProps

interface CfnWorkflowProps

LanguageType name
.NETAmazon.CDK.AWS.Omics.CfnWorkflowProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsomics#CfnWorkflowProps
Javasoftware.amazon.awscdk.services.omics.CfnWorkflowProps
Pythonaws_cdk.aws_omics.CfnWorkflowProps
TypeScript aws-cdk-lib » 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 { aws_omics as omics } from 'aws-cdk-lib';
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

NameTypeDescription
definitionUri?stringThe URI of a definition for the workflow.
description?stringThe parameter's description.
engine?stringAn engine for the workflow.
main?stringThe path of the main definition file for the workflow.
name?stringThe workflow's name.
parameterTemplate?IResolvable | { [string]: IResolvable | WorkflowParameterProperty }The workflow's parameter template.
storageCapacity?numberA 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 | WorkflowParameterProperty } (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.