pub struct SearchFlowExecutionsRequest {
pub end_time: Option<f64>,
pub flow_execution_id: Option<String>,
pub max_results: Option<i64>,
pub next_token: Option<String>,
pub start_time: Option<f64>,
pub system_instance_id: String,
}Fields§
§end_time: Option<f64>The date and time of the latest flow execution to return.
flow_execution_id: Option<String>The ID of a flow execution.
max_results: Option<i64>The maximum number of results to return in the response.
next_token: Option<String>The string that specifies the next page of results. Use this when you're paginating results.
start_time: Option<f64>The date and time of the earliest flow execution to return.
system_instance_id: StringThe ID of the system instance that contains the flow.
Trait Implementations§
Source§impl Clone for SearchFlowExecutionsRequest
impl Clone for SearchFlowExecutionsRequest
Source§fn clone(&self) -> SearchFlowExecutionsRequest
fn clone(&self) -> SearchFlowExecutionsRequest
Returns a duplicate 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 SearchFlowExecutionsRequest
impl Debug for SearchFlowExecutionsRequest
Source§impl Default for SearchFlowExecutionsRequest
impl Default for SearchFlowExecutionsRequest
Source§fn default() -> SearchFlowExecutionsRequest
fn default() -> SearchFlowExecutionsRequest
Returns the “default value” for a type. Read more
impl StructuralPartialEq for SearchFlowExecutionsRequest
Auto Trait Implementations§
impl Freeze for SearchFlowExecutionsRequest
impl RefUnwindSafe for SearchFlowExecutionsRequest
impl Send for SearchFlowExecutionsRequest
impl Sync for SearchFlowExecutionsRequest
impl Unpin for SearchFlowExecutionsRequest
impl UnwindSafe for SearchFlowExecutionsRequest
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