#[non_exhaustive]pub struct DescribeJobFlowsInput {
pub created_after: Option<DateTime>,
pub created_before: Option<DateTime>,
pub job_flow_ids: Option<Vec<String>>,
pub job_flow_states: Option<Vec<JobFlowExecutionState>>,
}Expand description
The input for the DescribeJobFlows operation.
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.created_after: Option<DateTime>Return only job flows created after this date and time.
created_before: Option<DateTime>Return only job flows created before this date and time.
job_flow_ids: Option<Vec<String>>Return only job flows whose job flow ID is contained in this list.
job_flow_states: Option<Vec<JobFlowExecutionState>>Return only job flows whose state is contained in this list.
Implementations§
source§impl DescribeJobFlowsInput
impl DescribeJobFlowsInput
sourcepub fn created_after(&self) -> Option<&DateTime>
pub fn created_after(&self) -> Option<&DateTime>
Return only job flows created after this date and time.
sourcepub fn created_before(&self) -> Option<&DateTime>
pub fn created_before(&self) -> Option<&DateTime>
Return only job flows created before this date and time.
sourcepub fn job_flow_ids(&self) -> &[String]
pub fn job_flow_ids(&self) -> &[String]
Return only job flows whose job flow ID is contained in this list.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .job_flow_ids.is_none().
sourcepub fn job_flow_states(&self) -> &[JobFlowExecutionState]
pub fn job_flow_states(&self) -> &[JobFlowExecutionState]
Return only job flows whose state is contained in this list.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .job_flow_states.is_none().
source§impl DescribeJobFlowsInput
impl DescribeJobFlowsInput
sourcepub fn builder() -> DescribeJobFlowsInputBuilder
pub fn builder() -> DescribeJobFlowsInputBuilder
Creates a new builder-style object to manufacture DescribeJobFlowsInput.
Trait Implementations§
source§impl Clone for DescribeJobFlowsInput
impl Clone for DescribeJobFlowsInput
source§fn clone(&self) -> DescribeJobFlowsInput
fn clone(&self) -> DescribeJobFlowsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for DescribeJobFlowsInput
impl Debug for DescribeJobFlowsInput
source§impl PartialEq for DescribeJobFlowsInput
impl PartialEq for DescribeJobFlowsInput
impl StructuralPartialEq for DescribeJobFlowsInput
Auto Trait Implementations§
impl Freeze for DescribeJobFlowsInput
impl RefUnwindSafe for DescribeJobFlowsInput
impl Send for DescribeJobFlowsInput
impl Sync for DescribeJobFlowsInput
impl Unpin for DescribeJobFlowsInput
impl UnwindSafe for DescribeJobFlowsInput
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more