Interface ListExecutorsRequest.Builder
-
- All Superinterfaces:
AthenaRequest.Builder,AwsRequest.Builder,Buildable,CopyableBuilder<ListExecutorsRequest.Builder,ListExecutorsRequest>,SdkBuilder<ListExecutorsRequest.Builder,ListExecutorsRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- ListExecutorsRequest
public static interface ListExecutorsRequest.Builder extends AthenaRequest.Builder, SdkPojo, CopyableBuilder<ListExecutorsRequest.Builder,ListExecutorsRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListExecutorsRequest.BuilderexecutorStateFilter(String executorStateFilter)A filter for a specific executor state.ListExecutorsRequest.BuilderexecutorStateFilter(ExecutorState executorStateFilter)A filter for a specific executor state.ListExecutorsRequest.BuildermaxResults(Integer maxResults)The maximum number of executors to return.ListExecutorsRequest.BuildernextToken(String nextToken)A token generated by the Athena service that specifies where to continue pagination if a previous request was truncated.ListExecutorsRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)ListExecutorsRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)ListExecutorsRequest.BuildersessionId(String sessionId)The session ID.-
Methods inherited from interface software.amazon.awssdk.services.athena.model.AthenaRequest.Builder
build
-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
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
-
sessionId
ListExecutorsRequest.Builder sessionId(String sessionId)
The session ID.
- Parameters:
sessionId- The session ID.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
executorStateFilter
ListExecutorsRequest.Builder executorStateFilter(String executorStateFilter)
A filter for a specific executor state. A description of each state follows.
CREATING- The executor is being started, including acquiring resources.CREATED- The executor has been started.REGISTERED- The executor has been registered.TERMINATING- The executor is in the process of shutting down.TERMINATED- The executor is no longer running.FAILED- Due to a failure, the executor is no longer running.- Parameters:
executorStateFilter- A filter for a specific executor state. A description of each state follows.CREATING- The executor is being started, including acquiring resources.CREATED- The executor has been started.REGISTERED- The executor has been registered.TERMINATING- The executor is in the process of shutting down.TERMINATED- The executor is no longer running.FAILED- Due to a failure, the executor is no longer running.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ExecutorState,ExecutorState
-
executorStateFilter
ListExecutorsRequest.Builder executorStateFilter(ExecutorState executorStateFilter)
A filter for a specific executor state. A description of each state follows.
CREATING- The executor is being started, including acquiring resources.CREATED- The executor has been started.REGISTERED- The executor has been registered.TERMINATING- The executor is in the process of shutting down.TERMINATED- The executor is no longer running.FAILED- Due to a failure, the executor is no longer running.- Parameters:
executorStateFilter- A filter for a specific executor state. A description of each state follows.CREATING- The executor is being started, including acquiring resources.CREATED- The executor has been started.REGISTERED- The executor has been registered.TERMINATING- The executor is in the process of shutting down.TERMINATED- The executor is no longer running.FAILED- Due to a failure, the executor is no longer running.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ExecutorState,ExecutorState
-
maxResults
ListExecutorsRequest.Builder maxResults(Integer maxResults)
The maximum number of executors to return.
- Parameters:
maxResults- The maximum number of executors to return.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
nextToken
ListExecutorsRequest.Builder nextToken(String nextToken)
A token generated by the Athena service that specifies where to continue pagination if a previous request was truncated. To obtain the next set of pages, pass in the
NextTokenfrom the response object of the previous page call.- Parameters:
nextToken- A token generated by the Athena service that specifies where to continue pagination if a previous request was truncated. To obtain the next set of pages, pass in theNextTokenfrom the response object of the previous page call.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
overrideConfiguration
ListExecutorsRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
ListExecutorsRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-