pub struct ListHumanTaskUisRequest {
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 human task user interfaces with a creation time greater than or equal to the specified timestamp.
creation_time_before: Option<f64>A filter that returns only human task user interfaces 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 ListHumanTaskUisRequest
impl Clone for ListHumanTaskUisRequest
Source§fn clone(&self) -> ListHumanTaskUisRequest
fn clone(&self) -> ListHumanTaskUisRequest
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 ListHumanTaskUisRequest
impl Debug for ListHumanTaskUisRequest
Source§impl Default for ListHumanTaskUisRequest
impl Default for ListHumanTaskUisRequest
Source§fn default() -> ListHumanTaskUisRequest
fn default() -> ListHumanTaskUisRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListHumanTaskUisRequest
impl PartialEq for ListHumanTaskUisRequest
Source§impl Serialize for ListHumanTaskUisRequest
impl Serialize for ListHumanTaskUisRequest
impl StructuralPartialEq for ListHumanTaskUisRequest
Auto Trait Implementations§
impl Freeze for ListHumanTaskUisRequest
impl RefUnwindSafe for ListHumanTaskUisRequest
impl Send for ListHumanTaskUisRequest
impl Sync for ListHumanTaskUisRequest
impl Unpin for ListHumanTaskUisRequest
impl UnwindSafe for ListHumanTaskUisRequest
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