Struct aws_sdk_emrserverless::input::ListJobRunsInput
source · [−]#[non_exhaustive]pub struct ListJobRunsInput { /* private fields */ }
Implementations
sourceimpl 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
.
sourceimpl 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<&Vec<JobRunState>>
pub fn states(&self) -> Option<&Vec<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
sourceimpl Clone for ListJobRunsInput
impl Clone for ListJobRunsInput
sourcefn clone(&self) -> ListJobRunsInput
fn clone(&self) -> ListJobRunsInput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for ListJobRunsInput
impl Debug for ListJobRunsInput
sourceimpl PartialEq<ListJobRunsInput> for ListJobRunsInput
impl PartialEq<ListJobRunsInput> for ListJobRunsInput
sourcefn eq(&self, other: &ListJobRunsInput) -> bool
fn eq(&self, other: &ListJobRunsInput) -> bool
impl StructuralPartialEq for ListJobRunsInput
Auto Trait Implementations
impl RefUnwindSafe for ListJobRunsInput
impl Send for ListJobRunsInput
impl Sync for ListJobRunsInput
impl Unpin for ListJobRunsInput
impl UnwindSafe for ListJobRunsInput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more