Interface ListActionExecutionsRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CodePipelineRequest.Builder,CopyableBuilder<ListActionExecutionsRequest.Builder,ListActionExecutionsRequest>,SdkBuilder<ListActionExecutionsRequest.Builder,ListActionExecutionsRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- ListActionExecutionsRequest
public static interface ListActionExecutionsRequest.Builder extends CodePipelineRequest.Builder, SdkPojo, CopyableBuilder<ListActionExecutionsRequest.Builder,ListActionExecutionsRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default ListActionExecutionsRequest.Builderfilter(Consumer<ActionExecutionFilter.Builder> filter)Input information used to filter action execution history.ListActionExecutionsRequest.Builderfilter(ActionExecutionFilter filter)Input information used to filter action execution history.ListActionExecutionsRequest.BuildermaxResults(Integer maxResults)The maximum number of results to return in a single call.ListActionExecutionsRequest.BuildernextToken(String nextToken)The token that was returned from the previousListActionExecutionscall, which can be used to return the next set of action executions in the list.ListActionExecutionsRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)ListActionExecutionsRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)ListActionExecutionsRequest.BuilderpipelineName(String pipelineName)The name of the pipeline for which you want to list action execution history.-
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
ListActionExecutionsRequest.Builder pipelineName(String pipelineName)
The name of the pipeline for which you want to list action execution history.
- Parameters:
pipelineName- The name of the pipeline for which you want to list action execution history.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
filter
ListActionExecutionsRequest.Builder filter(ActionExecutionFilter filter)
Input information used to filter action execution history.
- Parameters:
filter- Input information used to filter action execution history.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
filter
default ListActionExecutionsRequest.Builder filter(Consumer<ActionExecutionFilter.Builder> filter)
Input information used to filter action execution history.
This is a convenience method that creates an instance of theActionExecutionFilter.Builderavoiding the need to create one manually viaActionExecutionFilter.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tofilter(ActionExecutionFilter).- Parameters:
filter- a consumer that will call methods onActionExecutionFilter.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
filter(ActionExecutionFilter)
-
maxResults
ListActionExecutionsRequest.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. Action execution history is retained for up to 12 months, based on action 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. Action execution history is retained for up to 12 months, based on action execution start times. Default value is 100.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
nextToken
ListActionExecutionsRequest.Builder nextToken(String nextToken)
The token that was returned from the previous
ListActionExecutionscall, which can be used to return the next set of action executions in the list.- Parameters:
nextToken- The token that was returned from the previousListActionExecutionscall, which can be used to return the next set of action executions in the list.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
overrideConfiguration
ListActionExecutionsRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
ListActionExecutionsRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-