Interface ListActionExecutionsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CodePipelineResponse.Builder,CopyableBuilder<ListActionExecutionsResponse.Builder,ListActionExecutionsResponse>,SdkBuilder<ListActionExecutionsResponse.Builder,ListActionExecutionsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListActionExecutionsResponse
public static interface ListActionExecutionsResponse.Builder extends CodePipelineResponse.Builder, SdkPojo, CopyableBuilder<ListActionExecutionsResponse.Builder,ListActionExecutionsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListActionExecutionsResponse.BuilderactionExecutionDetails(Collection<ActionExecutionDetail> actionExecutionDetails)The details for a list of recent executions, such as action execution ID.ListActionExecutionsResponse.BuilderactionExecutionDetails(Consumer<ActionExecutionDetail.Builder>... actionExecutionDetails)The details for a list of recent executions, such as action execution ID.ListActionExecutionsResponse.BuilderactionExecutionDetails(ActionExecutionDetail... actionExecutionDetails)The details for a list of recent executions, such as action execution ID.ListActionExecutionsResponse.BuildernextToken(String nextToken)If the amount of returned information is significantly large, an identifier is also returned and can be used in a subsequentListActionExecutionscall to return the next set of action executions in the list.-
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
-
actionExecutionDetails
ListActionExecutionsResponse.Builder actionExecutionDetails(Collection<ActionExecutionDetail> actionExecutionDetails)
The details for a list of recent executions, such as action execution ID.
- Parameters:
actionExecutionDetails- The details for a list of recent executions, such as action execution ID.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
actionExecutionDetails
ListActionExecutionsResponse.Builder actionExecutionDetails(ActionExecutionDetail... actionExecutionDetails)
The details for a list of recent executions, such as action execution ID.
- Parameters:
actionExecutionDetails- The details for a list of recent executions, such as action execution ID.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
actionExecutionDetails
ListActionExecutionsResponse.Builder actionExecutionDetails(Consumer<ActionExecutionDetail.Builder>... actionExecutionDetails)
The details for a list of recent executions, such as action execution ID.
This is a convenience method that creates an instance of theActionExecutionDetail.Builderavoiding the need to create one manually viaActionExecutionDetail.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#actionExecutionDetails(List.) - Parameters:
actionExecutionDetails- a consumer that will call methods onActionExecutionDetail.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#actionExecutionDetails(java.util.Collection)
-
nextToken
ListActionExecutionsResponse.Builder nextToken(String nextToken)
If the amount of returned information is significantly large, an identifier is also returned and can be used in a subsequent
ListActionExecutionscall to return the next set of action executions in the list.- Parameters:
nextToken- If the amount of returned information is significantly large, an identifier is also returned and can be used in a subsequentListActionExecutionscall 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.
-
-