Interface CfnWorkflowProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnWorkflowProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-21T06:34:11.498Z")
@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()
.accelerators("accelerators")
.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();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnWorkflowPropsstatic final classAn implementation forCfnWorkflowProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnWorkflowProps.Builderbuilder()default Stringdefault 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 NumberThe default storage capacity for the workflow runs, in gibibytes.getTags()Tags for the workflow.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAccelerators
- See Also:
-
getDefinitionUri
The URI of a definition for the workflow.- See Also:
-
getDescription
The parameter's description.- See Also:
-
getEngine
An engine for the workflow.- See Also:
-
getMain
The path of the main definition file for the workflow.- See Also:
-
getName
The workflow's name.- See Also:
-
getParameterTemplate
The workflow's parameter template.- See Also:
-
getStorageCapacity
The default storage capacity for the workflow runs, in gibibytes.- See Also:
-
getTags
Tags for the workflow.- See Also:
-
builder
- Returns:
- a
CfnWorkflowProps.BuilderofCfnWorkflowProps
-