Interface ListExecutionsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,BcmDataExportsResponse.Builder,Buildable,CopyableBuilder<ListExecutionsResponse.Builder,ListExecutionsResponse>,SdkBuilder<ListExecutionsResponse.Builder,ListExecutionsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListExecutionsResponse
public static interface ListExecutionsResponse.Builder extends BcmDataExportsResponse.Builder, SdkPojo, CopyableBuilder<ListExecutionsResponse.Builder,ListExecutionsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListExecutionsResponse.Builderexecutions(Collection<ExecutionReference> executions)The list of executions.ListExecutionsResponse.Builderexecutions(Consumer<ExecutionReference.Builder>... executions)The list of executions.ListExecutionsResponse.Builderexecutions(ExecutionReference... executions)The list of executions.ListExecutionsResponse.BuildernextToken(String nextToken)The token to retrieve the next set of results.-
Methods inherited from interface software.amazon.awssdk.services.bcmdataexports.model.BcmDataExportsResponse.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, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
executions
ListExecutionsResponse.Builder executions(Collection<ExecutionReference> executions)
The list of executions.
- Parameters:
executions- The list of executions.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
executions
ListExecutionsResponse.Builder executions(ExecutionReference... executions)
The list of executions.
- Parameters:
executions- The list of executions.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
executions
ListExecutionsResponse.Builder executions(Consumer<ExecutionReference.Builder>... executions)
The list of executions.
This is a convenience method that creates an instance of theExecutionReference.Builderavoiding the need to create one manually viaExecutionReference.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#executions(List.) - Parameters:
executions- a consumer that will call methods onExecutionReference.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#executions(java.util.Collection)
-
nextToken
ListExecutionsResponse.Builder nextToken(String nextToken)
The token to retrieve the next set of results.
- Parameters:
nextToken- The token to retrieve the next set of results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-