Interface ListExecutionsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListExecutionsResponse.Builder,ListExecutionsResponse>,SdkBuilder<ListExecutionsResponse.Builder,ListExecutionsResponse>,SdkPojo,SdkResponse.Builder,TransferResponse.Builder
- Enclosing class:
- ListExecutionsResponse
public static interface ListExecutionsResponse.Builder extends TransferResponse.Builder, SdkPojo, CopyableBuilder<ListExecutionsResponse.Builder,ListExecutionsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListExecutionsResponse.Builderexecutions(Collection<ListedExecution> executions)Returns the details for each execution, in aListedExecutionarray.ListExecutionsResponse.Builderexecutions(Consumer<ListedExecution.Builder>... executions)Returns the details for each execution, in aListedExecutionarray.ListExecutionsResponse.Builderexecutions(ListedExecution... executions)Returns the details for each execution, in aListedExecutionarray.ListExecutionsResponse.BuildernextToken(String nextToken)ListExecutionsreturns theNextTokenparameter in the output.ListExecutionsResponse.BuilderworkflowId(String workflowId)A unique identifier for the workflow.-
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
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
Methods inherited from interface software.amazon.awssdk.services.transfer.model.TransferResponse.Builder
build, responseMetadata, responseMetadata
-
-
-
-
Method Detail
-
nextToken
ListExecutionsResponse.Builder nextToken(String nextToken)
ListExecutionsreturns theNextTokenparameter in the output. You can then pass theNextTokenparameter in a subsequent command to continue listing additional executions.- Parameters:
nextToken-ListExecutionsreturns theNextTokenparameter in the output. You can then pass theNextTokenparameter in a subsequent command to continue listing additional executions.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
workflowId
ListExecutionsResponse.Builder workflowId(String workflowId)
A unique identifier for the workflow.
- Parameters:
workflowId- A unique identifier for the workflow.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
executions
ListExecutionsResponse.Builder executions(Collection<ListedExecution> executions)
Returns the details for each execution, in a
ListedExecutionarray.- Parameters:
executions- Returns the details for each execution, in aListedExecutionarray.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
executions
ListExecutionsResponse.Builder executions(ListedExecution... executions)
Returns the details for each execution, in a
ListedExecutionarray.- Parameters:
executions- Returns the details for each execution, in aListedExecutionarray.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
executions
ListExecutionsResponse.Builder executions(Consumer<ListedExecution.Builder>... executions)
Returns the details for each execution, in a
This is a convenience method that creates an instance of theListedExecutionarray.ListedExecution.Builderavoiding the need to create one manually viaListedExecution.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#executions(List.) - Parameters:
executions- a consumer that will call methods onListedExecution.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#executions(java.util.Collection)
-
-