pub struct ListFlowDefinitionsRequest {
pub creation_time_after: Option<f64>,
pub creation_time_before: Option<f64>,
pub max_results: Option<i64>,
pub next_token: Option<String>,
pub sort_order: Option<String>,
}
Fields§
§creation_time_after: Option<f64>
A filter that returns only flow definitions with a creation time greater than or equal to the specified timestamp.
creation_time_before: Option<f64>
A filter that returns only flow definitions that were created before the specified timestamp.
max_results: Option<i64>
The total number of items to return. If the total number of available items is more than the value specified in MaxResults
, then a NextToken
will be provided in the output that you can use to resume pagination.
next_token: Option<String>
A token to resume pagination.
sort_order: Option<String>
An optional value that specifies whether you want the results sorted in Ascending
or Descending
order.
Trait Implementations§
Source§impl Clone for ListFlowDefinitionsRequest
impl Clone for ListFlowDefinitionsRequest
Source§fn clone(&self) -> ListFlowDefinitionsRequest
fn clone(&self) -> ListFlowDefinitionsRequest
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 ListFlowDefinitionsRequest
impl Debug for ListFlowDefinitionsRequest
Source§impl Default for ListFlowDefinitionsRequest
impl Default for ListFlowDefinitionsRequest
Source§fn default() -> ListFlowDefinitionsRequest
fn default() -> ListFlowDefinitionsRequest
Returns the “default value” for a type. Read more
impl StructuralPartialEq for ListFlowDefinitionsRequest
Auto Trait Implementations§
impl Freeze for ListFlowDefinitionsRequest
impl RefUnwindSafe for ListFlowDefinitionsRequest
impl Send for ListFlowDefinitionsRequest
impl Sync for ListFlowDefinitionsRequest
impl Unpin for ListFlowDefinitionsRequest
impl UnwindSafe for ListFlowDefinitionsRequest
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