Interface ParentStepDetails.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ParentStepDetails.Builder,ParentStepDetails>,SdkBuilder<ParentStepDetails.Builder,ParentStepDetails>,SdkPojo
- Enclosing class:
- ParentStepDetails
@Mutable @NotThreadSafe public static interface ParentStepDetails.Builder extends SdkPojo, CopyableBuilder<ParentStepDetails.Builder,ParentStepDetails>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ParentStepDetails.Builderaction(String action)The name of the automation action.ParentStepDetails.Builderiteration(Integer iteration)The current repetition of the loop represented by an integer.ParentStepDetails.BuilderiteratorValue(String iteratorValue)The current value of the specified iterator in the loop.ParentStepDetails.BuilderstepExecutionId(String stepExecutionId)The unique ID of a step execution.ParentStepDetails.BuilderstepName(String stepName)The name of the step.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
stepExecutionId
ParentStepDetails.Builder stepExecutionId(String stepExecutionId)
The unique ID of a step execution.
- Parameters:
stepExecutionId- The unique ID of a step execution.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
stepName
ParentStepDetails.Builder stepName(String stepName)
The name of the step.
- Parameters:
stepName- The name of the step.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
action
ParentStepDetails.Builder action(String action)
The name of the automation action.
- Parameters:
action- The name of the automation action.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
iteration
ParentStepDetails.Builder iteration(Integer iteration)
The current repetition of the loop represented by an integer.
- Parameters:
iteration- The current repetition of the loop represented by an integer.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
iteratorValue
ParentStepDetails.Builder iteratorValue(String iteratorValue)
The current value of the specified iterator in the loop.
- Parameters:
iteratorValue- The current value of the specified iterator in the loop.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-