Interface DescribeAutomationStepExecutionsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<DescribeAutomationStepExecutionsResponse.Builder,DescribeAutomationStepExecutionsResponse>,SdkBuilder<DescribeAutomationStepExecutionsResponse.Builder,DescribeAutomationStepExecutionsResponse>,SdkPojo,SdkResponse.Builder,SsmResponse.Builder
- Enclosing class:
- DescribeAutomationStepExecutionsResponse
public static interface DescribeAutomationStepExecutionsResponse.Builder extends SsmResponse.Builder, SdkPojo, CopyableBuilder<DescribeAutomationStepExecutionsResponse.Builder,DescribeAutomationStepExecutionsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DescribeAutomationStepExecutionsResponse.BuildernextToken(String nextToken)The token to use when requesting the next set of items.DescribeAutomationStepExecutionsResponse.BuilderstepExecutions(Collection<StepExecution> stepExecutions)A list of details about the current state of all steps that make up an execution.DescribeAutomationStepExecutionsResponse.BuilderstepExecutions(Consumer<StepExecution.Builder>... stepExecutions)A list of details about the current state of all steps that make up an execution.DescribeAutomationStepExecutionsResponse.BuilderstepExecutions(StepExecution... stepExecutions)A list of details about the current state of all steps that make up an execution.-
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, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
Methods inherited from interface software.amazon.awssdk.services.ssm.model.SsmResponse.Builder
build, responseMetadata, responseMetadata
-
-
-
-
Method Detail
-
stepExecutions
DescribeAutomationStepExecutionsResponse.Builder stepExecutions(Collection<StepExecution> stepExecutions)
A list of details about the current state of all steps that make up an execution.
- Parameters:
stepExecutions- A list of details about the current state of all steps that make up an execution.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
stepExecutions
DescribeAutomationStepExecutionsResponse.Builder stepExecutions(StepExecution... stepExecutions)
A list of details about the current state of all steps that make up an execution.
- Parameters:
stepExecutions- A list of details about the current state of all steps that make up an execution.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
stepExecutions
DescribeAutomationStepExecutionsResponse.Builder stepExecutions(Consumer<StepExecution.Builder>... stepExecutions)
A list of details about the current state of all steps that make up an execution.
This is a convenience method that creates an instance of theStepExecution.Builderavoiding the need to create one manually viaStepExecution.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#stepExecutions(List.) - Parameters:
stepExecutions- a consumer that will call methods onStepExecution.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#stepExecutions(java.util.Collection)
-
nextToken
DescribeAutomationStepExecutionsResponse.Builder nextToken(String nextToken)
The token to use when requesting the next set of items. If there are no additional items to return, the string is empty.
- Parameters:
nextToken- The token to use when requesting the next set of items. If there are no additional items to return, the string is empty.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-