Interface ListExecutionsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListExecutionsResponse.Builder,ListExecutionsResponse>,SdkBuilder<ListExecutionsResponse.Builder,ListExecutionsResponse>,SdkPojo,SdkResponse.Builder,SfnResponse.Builder
- Enclosing class:
- ListExecutionsResponse
public static interface ListExecutionsResponse.Builder extends SfnResponse.Builder, SdkPojo, CopyableBuilder<ListExecutionsResponse.Builder,ListExecutionsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListExecutionsResponse.Builderexecutions(Collection<ExecutionListItem> executions)The list of matching executions.ListExecutionsResponse.Builderexecutions(Consumer<ExecutionListItem.Builder>... executions)The list of matching executions.ListExecutionsResponse.Builderexecutions(ExecutionListItem... executions)The list of matching executions.ListExecutionsResponse.BuildernextToken(String nextToken)IfnextTokenis returned, there are more results available.-
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.sfn.model.SfnResponse.Builder
build, responseMetadata, responseMetadata
-
-
-
-
Method Detail
-
executions
ListExecutionsResponse.Builder executions(Collection<ExecutionListItem> executions)
The list of matching executions.
- Parameters:
executions- The list of matching executions.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
executions
ListExecutionsResponse.Builder executions(ExecutionListItem... executions)
The list of matching executions.
- Parameters:
executions- The list of matching executions.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
executions
ListExecutionsResponse.Builder executions(Consumer<ExecutionListItem.Builder>... executions)
The list of matching executions.
This is a convenience method that creates an instance of theExecutionListItem.Builderavoiding the need to create one manually viaExecutionListItem.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 onExecutionListItem.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#executions(java.util.Collection)
-
nextToken
ListExecutionsResponse.Builder nextToken(String nextToken)
If
nextTokenis returned, there are more results available. The value ofnextTokenis a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged. Each pagination token expires after 24 hours. Using an expired pagination token will return an HTTP 400 InvalidToken error.- Parameters:
nextToken- IfnextTokenis returned, there are more results available. The value ofnextTokenis a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged. Each pagination token expires after 24 hours. Using an expired pagination token will return an HTTP 400 InvalidToken error.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-