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-07-24T11:33:19.121Z")
@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 class
A builder forCfnWorkflowVersionProps
static final class
An implementation forCfnWorkflowVersionProps
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
default String
default String
The description of the workflow version.default String
default String
getMain()
default Object
default Number
default String
getTags()
A map of resource tags.The name of the workflow version.default String
The 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.Builder
ofCfnWorkflowVersionProps
-