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-20T23:52:59.790Z")
@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
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getVersionName
- See Also:
-
getWorkflowId
- See Also:
-
getAccelerators
- See Also:
-
getDefinitionUri
- See Also:
-
getDescription
- 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
-