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
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnWorkflowProps
static final class
An implementation forCfnWorkflowProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic CfnWorkflowProps.Builder
builder()
default String
The URI of a definition for the workflow.default String
The parameter's description.default String
An engine for the workflow.default String
getMain()
The path of the main definition file for the workflow.default String
getName()
The workflow's name.default Object
The workflow's parameter template.default Number
A 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.Builder
ofCfnWorkflowProps
-