Interface ListWorkflowRunsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CodeCatalystResponse.Builder,CopyableBuilder<ListWorkflowRunsResponse.Builder,ListWorkflowRunsResponse>,SdkBuilder<ListWorkflowRunsResponse.Builder,ListWorkflowRunsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListWorkflowRunsResponse
public static interface ListWorkflowRunsResponse.Builder extends CodeCatalystResponse.Builder, SdkPojo, CopyableBuilder<ListWorkflowRunsResponse.Builder,ListWorkflowRunsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListWorkflowRunsResponse.Builderitems(Collection<WorkflowRunSummary> items)Information about the runs of a workflow.ListWorkflowRunsResponse.Builderitems(Consumer<WorkflowRunSummary.Builder>... items)Information about the runs of a workflow.ListWorkflowRunsResponse.Builderitems(WorkflowRunSummary... items)Information about the runs of a workflow.ListWorkflowRunsResponse.BuildernextToken(String nextToken)A token returned from a call to this API to indicate the next batch of results to return, if any.-
Methods inherited from interface software.amazon.awssdk.services.codecatalyst.model.CodeCatalystResponse.Builder
build, responseMetadata, responseMetadata
-
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
-
-
-
-
Method Detail
-
nextToken
ListWorkflowRunsResponse.Builder nextToken(String nextToken)
A token returned from a call to this API to indicate the next batch of results to return, if any.
- Parameters:
nextToken- A token returned from a call to this API to indicate the next batch of results to return, if any.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
items
ListWorkflowRunsResponse.Builder items(Collection<WorkflowRunSummary> items)
Information about the runs of a workflow.
- Parameters:
items- Information about the runs of a workflow.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
items
ListWorkflowRunsResponse.Builder items(WorkflowRunSummary... items)
Information about the runs of a workflow.
- Parameters:
items- Information about the runs of a workflow.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
items
ListWorkflowRunsResponse.Builder items(Consumer<WorkflowRunSummary.Builder>... items)
Information about the runs of a workflow.
This is a convenience method that creates an instance of theWorkflowRunSummary.Builderavoiding the need to create one manually viaWorkflowRunSummary.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#items(List.) - Parameters:
items- a consumer that will call methods onWorkflowRunSummary.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#items(java.util.Collection)
-
-