Class Wait.Builder
java.lang.Object
software.amazon.awscdk.services.stepfunctions.Wait.Builder
- All Implemented Interfaces:
software.amazon.jsii.Builder<Wait>
- Enclosing class:
Wait
@Stability(Stable)
public static final class Wait.Builder
extends Object
implements software.amazon.jsii.Builder<Wait>
A fluent builder for
Wait.-
Method Summary
Modifier and TypeMethodDescriptionWorkflow variables to store in this step.build()A comment describing this state.static Wait.BuilderqueryLanguage(QueryLanguage queryLanguage) The name of the query language used by the state.Optional name for this state.Wait duration.
-
Method Details
-
create
@Stability(Stable) public static Wait.Builder create(software.constructs.Construct scope, String id) - Parameters:
scope- This parameter is required.id- Descriptive identifier for this chainable. This parameter is required.- Returns:
- a new instance of
Wait.Builder.
-
comment
A comment describing this state.Default: No comment
- Parameters:
comment- A comment describing this state. This parameter is required.- Returns:
this
-
queryLanguage
The name of the query language used by the state.If the state does not contain a
queryLanguagefield, then it will use the query language specified in the top-levelqueryLanguagefield.Default: - JSONPath
- Parameters:
queryLanguage- The name of the query language used by the state. This parameter is required.- Returns:
this
-
stateName
Optional name for this state.Default: - The construct ID will be used as state name
- Parameters:
stateName- Optional name for this state. This parameter is required.- Returns:
this
-
assign
Workflow variables to store in this step.Using workflow variables, you can store data in a step and retrieve that data in future steps.
Default: - Not assign variables
- Parameters:
assign- Workflow variables to store in this step. This parameter is required.- Returns:
this- See Also:
-
time
Wait duration.- Parameters:
time- Wait duration. This parameter is required.- Returns:
this
-
build
-