Interface CfnWorkflowVersionProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnWorkflowVersionProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.112.0 (build de1bc80)",
date="2025-05-22T23:39:55.401Z")
@Stability(Stable)
public interface CfnWorkflowVersionProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnWorkflowVersion.
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.*;
CfnWorkflowVersionProps cfnWorkflowVersionProps = CfnWorkflowVersionProps.builder()
.versionName("versionName")
.workflowId("workflowId")
// the properties below are optional
.accelerators("accelerators")
.definitionUri("definitionUri")
.description("description")
.engine("engine")
.main("main")
.parameterTemplate(Map.of(
"parameterTemplateKey", WorkflowParameterProperty.builder()
.description("description")
.optional(false)
.build()))
.storageCapacity(123)
.storageType("storageType")
.tags(Map.of(
"tagsKey", "tags"))
.workflowBucketOwnerId("workflowBucketOwnerId")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnWorkflowVersionPropsstatic final classAn implementation forCfnWorkflowVersionProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default Stringdefault Stringdefault StringThe description of the workflow version.default Stringdefault StringgetMain()default Objectdefault Numberdefault StringgetTags()A map of resource tags.The name of the workflow version.default StringThe workflow's ID.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getVersionName
The name of the workflow version.- See Also:
-
getWorkflowId
The workflow's ID.- See Also:
-
getAccelerators
- See Also:
-
getDefinitionUri
- See Also:
-
getDescription
The description of the workflow version.- See Also:
-
getEngine
- See Also:
-
getMain
- See Also:
-
getParameterTemplate
- See Also:
-
getStorageCapacity
- See Also:
-
getStorageType
- See Also:
-
getTags
A map of resource tags.- See Also:
-
getWorkflowBucketOwnerId
- See Also:
-
builder
- Returns:
- a
CfnWorkflowVersionProps.BuilderofCfnWorkflowVersionProps
-