Interface ListRuleExecutionsRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CodePipelineRequest.Builder,CopyableBuilder<ListRuleExecutionsRequest.Builder,ListRuleExecutionsRequest>,SdkBuilder<ListRuleExecutionsRequest.Builder,ListRuleExecutionsRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- ListRuleExecutionsRequest
public static interface ListRuleExecutionsRequest.Builder extends CodePipelineRequest.Builder, SdkPojo, CopyableBuilder<ListRuleExecutionsRequest.Builder,ListRuleExecutionsRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default ListRuleExecutionsRequest.Builderfilter(Consumer<RuleExecutionFilter.Builder> filter)Input information used to filter rule execution history.ListRuleExecutionsRequest.Builderfilter(RuleExecutionFilter filter)Input information used to filter rule execution history.ListRuleExecutionsRequest.BuildermaxResults(Integer maxResults)The maximum number of results to return in a single call.ListRuleExecutionsRequest.BuildernextToken(String nextToken)The token that was returned from the previousListRuleExecutionscall, which can be used to return the next set of rule executions in the list.ListRuleExecutionsRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)ListRuleExecutionsRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)ListRuleExecutionsRequest.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
ListRuleExecutionsRequest.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.
-
filter
ListRuleExecutionsRequest.Builder filter(RuleExecutionFilter filter)
Input information used to filter rule execution history.
- Parameters:
filter- Input information used to filter rule execution history.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
filter
default ListRuleExecutionsRequest.Builder filter(Consumer<RuleExecutionFilter.Builder> filter)
Input information used to filter rule execution history.
This is a convenience method that creates an instance of theRuleExecutionFilter.Builderavoiding the need to create one manually viaRuleExecutionFilter.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tofilter(RuleExecutionFilter).- Parameters:
filter- a consumer that will call methods onRuleExecutionFilter.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
filter(RuleExecutionFilter)
-
maxResults
ListRuleExecutionsRequest.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.
-
nextToken
ListRuleExecutionsRequest.Builder nextToken(String nextToken)
The token that was returned from the previous
ListRuleExecutionscall, which can be used to return the next set of rule executions in the list.- Parameters:
nextToken- The token that was returned from the previousListRuleExecutionscall, which can be used to return the next set of rule executions in the list.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
overrideConfiguration
ListRuleExecutionsRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
ListRuleExecutionsRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-