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',
definitionRepository: {
connectionArn: 'connectionArn',
excludeFilePatterns: ['excludeFilePatterns'],
fullRepositoryId: 'fullRepositoryId',
sourceReference: {
type: 'type',
value: 'value',
},
},
definitionUri: 'definitionUri',
description: 'description',
engine: 'engine',
main: 'main',
name: 'name',
parameterTemplate: {
parameterTemplateKey: {
description: 'description',
optional: false,
},
},
parameterTemplatePath: 'parameterTemplatePath',
readmeMarkdown: 'readmeMarkdown',
readmePath: 'readmePath',
readmeUri: 'readmeUri',
storageCapacity: 123,
storageType: 'storageType',
tags: {
tagsKey: 'tags',
},
workflowBucketOwnerId: 'workflowBucketOwnerId',
};
Properties
Name | Type | Description |
---|---|---|
accelerators? | string | |
definition | IResolvable | Definition | Contains information about a source code repository that hosts the workflow definition files. |
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. |
parameter | string | Path to the primary workflow parameter template JSON file inside the repository. |
readme | string | The markdown content for the workflow's README file. |
readme | string | The path to the workflow README markdown file within the repository. |
readme | string | The S3 URI of the README file for the workflow. |
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. |
workflow | string | Optional workflow bucket owner ID to verify the workflow bucket. |
accelerators?
Type:
string
(optional)
definitionRepository?
Type:
IResolvable
|
Definition
(optional)
Contains information about a source code repository that hosts the workflow definition files.
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.
parameterTemplatePath?
Type:
string
(optional)
Path to the primary workflow parameter template JSON file inside the repository.
readmeMarkdown?
Type:
string
(optional)
The markdown content for the workflow's README file.
This provides documentation and usage information for users of the workflow.
readmePath?
Type:
string
(optional)
The path to the workflow README markdown file within the repository.
This file provides documentation and usage information for the workflow. If not specified, the README.md file from the root directory of the repository will be used.
readmeUri?
Type:
string
(optional)
The S3 URI of the README file for the workflow.
This file provides documentation and usage information for the workflow. The S3 URI must begin with s3://USER-OWNED-BUCKET/. The requester must have access to the S3 bucket and object. The max README content length is 500 KiB.
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.
workflowBucketOwnerId?
Type:
string
(optional)
Optional workflow bucket owner ID to verify the workflow bucket.