Interface CfnServer.WorkflowDetailsProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnServer.WorkflowDetailsProperty.Jsii$Proxy
Enclosing class:
CfnServer

@Stability(Stable) public static interface CfnServer.WorkflowDetailsProperty extends software.amazon.jsii.JsiiSerializable
Container for the WorkflowDetail data type.

It is used by actions that trigger a workflow to begin execution.

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.transfer.*;
 WorkflowDetailsProperty workflowDetailsProperty = WorkflowDetailsProperty.builder()
         .onPartialUpload(List.of(WorkflowDetailProperty.builder()
                 .executionRole("executionRole")
                 .workflowId("workflowId")
                 .build()))
         .onUpload(List.of(WorkflowDetailProperty.builder()
                 .executionRole("executionRole")
                 .workflowId("workflowId")
                 .build()))
         .build();
 

See Also: