Struct aws_sdk_emrserverless::input::ListJobRunsInput
source · #[non_exhaustive]pub struct ListJobRunsInput { /* private fields */ }
Implementations§
source§impl ListJobRunsInput
impl ListJobRunsInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListJobRuns, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListJobRuns, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<ListJobRuns
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ListJobRunsInput
.
source§impl ListJobRunsInput
impl ListJobRunsInput
sourcepub fn application_id(&self) -> Option<&str>
pub fn application_id(&self) -> Option<&str>
The ID of the application for which to list the job run.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
The token for the next set of job run results.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of job runs that can be listed.
sourcepub fn created_at_after(&self) -> Option<&DateTime>
pub fn created_at_after(&self) -> Option<&DateTime>
The lower bound of the option to filter by creation date and time.
sourcepub fn created_at_before(&self) -> Option<&DateTime>
pub fn created_at_before(&self) -> Option<&DateTime>
The upper bound of the option to filter by creation date and time.
sourcepub fn states(&self) -> Option<&[JobRunState]>
pub fn states(&self) -> Option<&[JobRunState]>
An optional filter for job run states. Note that if this filter contains multiple states, the resulting list will be grouped by the state.
Trait Implementations§
source§impl Clone for ListJobRunsInput
impl Clone for ListJobRunsInput
source§fn clone(&self) -> ListJobRunsInput
fn clone(&self) -> ListJobRunsInput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for ListJobRunsInput
impl Debug for ListJobRunsInput
source§impl PartialEq<ListJobRunsInput> for ListJobRunsInput
impl PartialEq<ListJobRunsInput> for ListJobRunsInput
source§fn eq(&self, other: &ListJobRunsInput) -> bool
fn eq(&self, other: &ListJobRunsInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.