Interface CfnImage.WorkflowConfigurationProperty

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

@Stability(Stable) public static interface CfnImage.WorkflowConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Contains control settings and configurable inputs for a workflow resource.

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.imagebuilder.*;
 WorkflowConfigurationProperty workflowConfigurationProperty = WorkflowConfigurationProperty.builder()
         .onFailure("onFailure")
         .parallelGroup("parallelGroup")
         .parameters(List.of(WorkflowParameterProperty.builder()
                 .name("name")
                 .value(List.of("value"))
                 .build()))
         .workflowArn("workflowArn")
         .build();
 

See Also: