pub struct ListAppsRequest {
pub domain_id_equals: Option<String>,
pub max_results: Option<i64>,
pub next_token: Option<String>,
pub sort_by: Option<String>,
pub sort_order: Option<String>,
pub user_profile_name_equals: Option<String>,
}
Fields§
§domain_id_equals: Option<String>
A parameter to search for the domain ID.
max_results: Option<i64>
Returns a list up to a specified limit.
next_token: Option<String>
If the previous response was truncated, you will receive this token. Use it in your next request to receive the next set of results.
sort_by: Option<String>
The parameter by which to sort the results. The default is CreationTime.
sort_order: Option<String>
The sort order for the results. The default is Ascending.
user_profile_name_equals: Option<String>
A parameter to search by user profile name.
Trait Implementations§
Source§impl Clone for ListAppsRequest
impl Clone for ListAppsRequest
Source§fn clone(&self) -> ListAppsRequest
fn clone(&self) -> ListAppsRequest
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 ListAppsRequest
impl Debug for ListAppsRequest
Source§impl Default for ListAppsRequest
impl Default for ListAppsRequest
Source§fn default() -> ListAppsRequest
fn default() -> ListAppsRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListAppsRequest
impl PartialEq for ListAppsRequest
Source§impl Serialize for ListAppsRequest
impl Serialize for ListAppsRequest
impl StructuralPartialEq for ListAppsRequest
Auto Trait Implementations§
impl Freeze for ListAppsRequest
impl RefUnwindSafe for ListAppsRequest
impl Send for ListAppsRequest
impl Sync for ListAppsRequest
impl Unpin for ListAppsRequest
impl UnwindSafe for ListAppsRequest
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