Struct aws_sdk_athena::input::ListExecutorsInput
source · #[non_exhaustive]pub struct ListExecutorsInput { /* private fields */ }
Implementations§
source§impl ListExecutorsInput
impl ListExecutorsInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListExecutors, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation( &self, _config: &Config ) -> Result<Operation<ListExecutors, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<ListExecutors
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ListExecutorsInput
.
source§impl ListExecutorsInput
impl ListExecutorsInput
sourcepub fn session_id(&self) -> Option<&str>
pub fn session_id(&self) -> Option<&str>
The session ID.
sourcepub fn executor_state_filter(&self) -> Option<&ExecutorState>
pub fn executor_state_filter(&self) -> Option<&ExecutorState>
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.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of executors to return.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
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 NextToken
from the response object of the previous page call.
Trait Implementations§
source§impl Clone for ListExecutorsInput
impl Clone for ListExecutorsInput
source§fn clone(&self) -> ListExecutorsInput
fn clone(&self) -> ListExecutorsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ListExecutorsInput
impl Debug for ListExecutorsInput
source§impl PartialEq<ListExecutorsInput> for ListExecutorsInput
impl PartialEq<ListExecutorsInput> for ListExecutorsInput
source§fn eq(&self, other: &ListExecutorsInput) -> bool
fn eq(&self, other: &ListExecutorsInput) -> bool
self
and other
values to be equal, and is used
by ==
.