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:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnImage.WorkflowConfigurationProperty
static final class
An implementation forCfnImage.WorkflowConfigurationProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
The action to take if the workflow fails.default String
Test workflows are defined within named runtime groups called parallel groups.default Object
Contains parameter values for each of the parameters that the workflow document defined for the workflow resource.default String
The Amazon Resource Name (ARN) of the workflow resource.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getOnFailure
The action to take if the workflow fails.- See Also:
-
getParallelGroup
Test workflows are defined within named runtime groups called parallel groups.The parallel group is the named group that contains this test workflow. Test workflows within a parallel group can run at the same time. Image Builder starts up to five test workflows in the group at the same time, and starts additional workflows as others complete, until all workflows in the group have completed. This field only applies for test workflows.
- See Also:
-
getParameters
Contains parameter values for each of the parameters that the workflow document defined for the workflow resource.- See Also:
-
getWorkflowArn
The Amazon Resource Name (ARN) of the workflow resource.- See Also:
-
builder
-