Interface ListPipelineExecutionsRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CodePipelineRequest.Builder,CopyableBuilder<ListPipelineExecutionsRequest.Builder,ListPipelineExecutionsRequest>,SdkBuilder<ListPipelineExecutionsRequest.Builder,ListPipelineExecutionsRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- ListPipelineExecutionsRequest
public static interface ListPipelineExecutionsRequest.Builder extends CodePipelineRequest.Builder, SdkPojo, CopyableBuilder<ListPipelineExecutionsRequest.Builder,ListPipelineExecutionsRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default ListPipelineExecutionsRequest.Builderfilter(Consumer<PipelineExecutionFilter.Builder> filter)The pipeline execution to filter on.ListPipelineExecutionsRequest.Builderfilter(PipelineExecutionFilter filter)The pipeline execution to filter on.ListPipelineExecutionsRequest.BuildermaxResults(Integer maxResults)The maximum number of results to return in a single call.ListPipelineExecutionsRequest.BuildernextToken(String nextToken)The token that was returned from the previousListPipelineExecutionscall, which can be used to return the next set of pipeline executions in the list.ListPipelineExecutionsRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)ListPipelineExecutionsRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)ListPipelineExecutionsRequest.BuilderpipelineName(String pipelineName)The name of the pipeline for which you want to get execution summary information.-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
Methods inherited from interface software.amazon.awssdk.services.codepipeline.model.CodePipelineRequest.Builder
build
-
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
-
-
-
-
Method Detail
-
pipelineName
ListPipelineExecutionsRequest.Builder pipelineName(String pipelineName)
The name of the pipeline for which you want to get execution summary information.
- Parameters:
pipelineName- The name of the pipeline for which you want to get execution summary information.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
maxResults
ListPipelineExecutionsRequest.Builder maxResults(Integer maxResults)
The maximum number of results to return in a single call. To retrieve the remaining results, make another call with the returned nextToken value. Pipeline history is limited to the most recent 12 months, based on pipeline execution start times. Default value is 100.
- Parameters:
maxResults- The maximum number of results to return in a single call. To retrieve the remaining results, make another call with the returned nextToken value. Pipeline history is limited to the most recent 12 months, based on pipeline execution start times. Default value is 100.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
filter
ListPipelineExecutionsRequest.Builder filter(PipelineExecutionFilter filter)
The pipeline execution to filter on.
- Parameters:
filter- The pipeline execution to filter on.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
filter
default ListPipelineExecutionsRequest.Builder filter(Consumer<PipelineExecutionFilter.Builder> filter)
The pipeline execution to filter on.
This is a convenience method that creates an instance of thePipelineExecutionFilter.Builderavoiding the need to create one manually viaPipelineExecutionFilter.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tofilter(PipelineExecutionFilter).- Parameters:
filter- a consumer that will call methods onPipelineExecutionFilter.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
filter(PipelineExecutionFilter)
-
nextToken
ListPipelineExecutionsRequest.Builder nextToken(String nextToken)
The token that was returned from the previous
ListPipelineExecutionscall, which can be used to return the next set of pipeline executions in the list.- Parameters:
nextToken- The token that was returned from the previousListPipelineExecutionscall, which can be used to return the next set of pipeline executions in the list.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
overrideConfiguration
ListPipelineExecutionsRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
ListPipelineExecutionsRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-