Interface ListPipelineExecutionsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CodePipelineResponse.Builder,CopyableBuilder<ListPipelineExecutionsResponse.Builder,ListPipelineExecutionsResponse>,SdkBuilder<ListPipelineExecutionsResponse.Builder,ListPipelineExecutionsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListPipelineExecutionsResponse
public static interface ListPipelineExecutionsResponse.Builder extends CodePipelineResponse.Builder, SdkPojo, CopyableBuilder<ListPipelineExecutionsResponse.Builder,ListPipelineExecutionsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListPipelineExecutionsResponse.BuildernextToken(String nextToken)A token that can be used in the nextListPipelineExecutionscall.ListPipelineExecutionsResponse.BuilderpipelineExecutionSummaries(Collection<PipelineExecutionSummary> pipelineExecutionSummaries)A list of executions in the history of a pipeline.ListPipelineExecutionsResponse.BuilderpipelineExecutionSummaries(Consumer<PipelineExecutionSummary.Builder>... pipelineExecutionSummaries)A list of executions in the history of a pipeline.ListPipelineExecutionsResponse.BuilderpipelineExecutionSummaries(PipelineExecutionSummary... pipelineExecutionSummaries)A list of executions in the history of a pipeline.-
Methods inherited from interface software.amazon.awssdk.services.codepipeline.model.CodePipelineResponse.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, sdkFieldNameToField, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
pipelineExecutionSummaries
ListPipelineExecutionsResponse.Builder pipelineExecutionSummaries(Collection<PipelineExecutionSummary> pipelineExecutionSummaries)
A list of executions in the history of a pipeline.
- Parameters:
pipelineExecutionSummaries- A list of executions in the history of a pipeline.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
pipelineExecutionSummaries
ListPipelineExecutionsResponse.Builder pipelineExecutionSummaries(PipelineExecutionSummary... pipelineExecutionSummaries)
A list of executions in the history of a pipeline.
- Parameters:
pipelineExecutionSummaries- A list of executions in the history of a pipeline.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
pipelineExecutionSummaries
ListPipelineExecutionsResponse.Builder pipelineExecutionSummaries(Consumer<PipelineExecutionSummary.Builder>... pipelineExecutionSummaries)
A list of executions in the history of a pipeline.
This is a convenience method that creates an instance of thePipelineExecutionSummary.Builderavoiding the need to create one manually viaPipelineExecutionSummary.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#pipelineExecutionSummaries(List.) - Parameters:
pipelineExecutionSummaries- a consumer that will call methods onPipelineExecutionSummary.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#pipelineExecutionSummaries(java.util.Collection)
-
nextToken
ListPipelineExecutionsResponse.Builder nextToken(String nextToken)
A token that can be used in the next
ListPipelineExecutionscall. To view all items in the list, continue to call this operation with each subsequent token until no more nextToken values are returned.- Parameters:
nextToken- A token that can be used in the nextListPipelineExecutionscall. To view all items in the list, continue to call this operation with each subsequent token until no more nextToken values are returned.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-