Interface CfnWorkflowProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnWorkflowProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.94.0 (build b380f01)",
date="2024-03-01T20:58:27.571Z")
@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 class
A builder forCfnWorkflowProps
static final class
An implementation forCfnWorkflowProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic CfnWorkflowProps.Builder
builder()
default String
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 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
A storage capacity for the workflow in gibibytes.- See Also:
-
getTags
Tags for the workflow.- See Also:
-
builder
- Returns:
- a
CfnWorkflowProps.Builder
ofCfnWorkflowProps
-