#[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
source§fn eq(&self, other: &DescribeJobFlowsInput) -> bool
fn eq(&self, other: &DescribeJobFlowsInput) -> bool
self and other values to be equal, and is used
by ==.