Struct aws_sdk_emrserverless::input::ListJobRunsInput
source · [−]#[non_exhaustive]pub struct ListJobRunsInput {
pub application_id: Option<String>,
pub next_token: Option<String>,
pub max_results: Option<i32>,
pub created_at_after: Option<DateTime>,
pub created_at_before: Option<DateTime>,
pub states: Option<Vec<JobRunState>>,
}
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.application_id: Option<String>
The ID of the application for which to list the job run.
next_token: Option<String>
The token for the next set of job run results.
max_results: Option<i32>
The maximum number of job runs that can be listed.
created_at_after: Option<DateTime>
The lower bound of the option to filter by creation date and time.
created_at_before: Option<DateTime>
The upper bound of the option to filter by creation date and time.
states: 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.
Implementations
sourceimpl ListJobRunsInput
impl ListJobRunsInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListJobRuns, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListJobRuns, AwsErrorRetryPolicy>, 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 more
sourceimpl 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
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &ListJobRunsInput) -> bool
fn ne(&self, other: &ListJobRunsInput) -> bool
This method tests for !=
.
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 T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
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
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more