pub struct DescribeJobFlowsInput {
pub created_after: Option<f64>,
pub created_before: Option<f64>,
pub job_flow_ids: Option<Vec<String>>,
pub job_flow_states: Option<Vec<String>>,
}
Expand description
The input for the DescribeJobFlows operation.
Fields§
§created_after: Option<f64>
Return only job flows created after this date and time.
created_before: Option<f64>
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<String>>
Return only job flows whose state is contained in this list.
Trait Implementations§
Source§impl Clone for DescribeJobFlowsInput
impl Clone for DescribeJobFlowsInput
Source§fn clone(&self) -> DescribeJobFlowsInput
fn clone(&self) -> DescribeJobFlowsInput
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 DescribeJobFlowsInput
impl Debug for DescribeJobFlowsInput
Source§impl Default for DescribeJobFlowsInput
impl Default for DescribeJobFlowsInput
Source§fn default() -> DescribeJobFlowsInput
fn default() -> DescribeJobFlowsInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for DescribeJobFlowsInput
impl PartialEq for DescribeJobFlowsInput
Source§impl Serialize for DescribeJobFlowsInput
impl Serialize 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
Mutably borrows from an owned value. Read more