Interface CfnWorkflowProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnWorkflowProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:00.549Z")
@Stability(Stable)
public interface CfnWorkflowProps
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.omics.*;
CfnWorkflowProps cfnWorkflowProps = CfnWorkflowProps.builder()
.definitionUri("definitionUri")
.description("description")
.engine("engine")
.main("main")
.name("name")
.parameterTemplate(Map.of(
"parameterTemplateKey", WorkflowParameterProperty.builder()
.description("description")
.optional(false)
.build()))
.storageCapacity(123)
.tags(Map.of(
"tagsKey", "tags"))
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnWorkflowPropsstatic final classAn implementation forCfnWorkflowProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnWorkflowProps.Builderbuilder()default StringThe URI of a definition for the workflow.default StringThe parameter's description.default StringAn engine for the workflow.default StringgetMain()The path of the main definition file for the workflow.default StringgetName()The workflow's name.default ObjectThe workflow's parameter template.default NumberA storage capacity for the workflow in gigabytes.getTags()Tags for the workflow.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDefinitionUri
The URI of a definition for the workflow. -
getDescription
The parameter's description. -
getEngine
An engine for the workflow. -
getMain
The path of the main definition file for the workflow. -
getName
The workflow's name. -
getParameterTemplate
The workflow's parameter template. -
getStorageCapacity
A storage capacity for the workflow in gigabytes. -
getTags
Tags for the workflow. -
builder
- Returns:
- a
CfnWorkflowProps.BuilderofCfnWorkflowProps
-