Interface CfnWorkflowProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnWorkflowProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:00.549Z") @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()
         .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();
 
  • Method Details

    • getDefinitionUri

      @Stability(Stable) @Nullable default String getDefinitionUri()
      The URI of a definition for the workflow.
    • getDescription

      @Stability(Stable) @Nullable default String getDescription()
      The parameter's description.
    • getEngine

      @Stability(Stable) @Nullable default String getEngine()
      An engine for the workflow.
    • getMain

      @Stability(Stable) @Nullable default String getMain()
      The path of the main definition file for the workflow.
    • getName

      @Stability(Stable) @Nullable default String getName()
      The workflow's name.
    • getParameterTemplate

      @Stability(Stable) @Nullable default Object getParameterTemplate()
      The workflow's parameter template.
    • getStorageCapacity

      @Stability(Stable) @Nullable default Number getStorageCapacity()
      A storage capacity for the workflow in gigabytes.
    • getTags

      @Stability(Stable) @Nullable default Map<String,String> getTags()
      Tags for the workflow.
    • builder

      @Stability(Stable) static CfnWorkflowProps.Builder builder()
      Returns:
      a CfnWorkflowProps.Builder of CfnWorkflowProps