#[non_exhaustive]pub struct ListCalculationExecutionsInput { /* private fields */ }
Implementations§
source§impl ListCalculationExecutionsInput
impl ListCalculationExecutionsInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListCalculationExecutions, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation( &self, _config: &Config ) -> Result<Operation<ListCalculationExecutions, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<ListCalculationExecutions
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ListCalculationExecutionsInput
.
source§impl ListCalculationExecutionsInput
impl ListCalculationExecutionsInput
sourcepub fn session_id(&self) -> Option<&str>
pub fn session_id(&self) -> Option<&str>
The session ID.
sourcepub fn state_filter(&self) -> Option<&CalculationExecutionState>
pub fn state_filter(&self) -> Option<&CalculationExecutionState>
A filter for a specific calculation execution state. A description of each state follows.
CREATING
- The calculation is in the process of being created.
CREATED
- The calculation has been created and is ready to run.
QUEUED
- The calculation has been queued for processing.
RUNNING
- The calculation is running.
CANCELING
- A request to cancel the calculation has been received and the system is working to stop it.
CANCELED
- The calculation is no longer running as the result of a cancel request.
COMPLETED
- The calculation has completed without error.
FAILED
- The calculation failed and is no longer running.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of calculation executions 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 ListCalculationExecutionsInput
impl Clone for ListCalculationExecutionsInput
source§fn clone(&self) -> ListCalculationExecutionsInput
fn clone(&self) -> ListCalculationExecutionsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq<ListCalculationExecutionsInput> for ListCalculationExecutionsInput
impl PartialEq<ListCalculationExecutionsInput> for ListCalculationExecutionsInput
source§fn eq(&self, other: &ListCalculationExecutionsInput) -> bool
fn eq(&self, other: &ListCalculationExecutionsInput) -> bool
self
and other
values to be equal, and is used
by ==
.