pub struct ListUsersRequest {
pub broker_id: String,
pub max_results: Option<i64>,
pub next_token: Option<String>,
}
Fields§
§broker_id: String
The unique ID that Amazon MQ generates for the broker.
max_results: Option<i64>
The maximum number of ActiveMQ users that can be returned per page (20 by default). This value must be an integer from 5 to 100.
next_token: Option<String>
The token that specifies the next page of results Amazon MQ should return. To request the first page, leave nextToken empty.
Trait Implementations§
Source§impl Clone for ListUsersRequest
impl Clone for ListUsersRequest
Source§fn clone(&self) -> ListUsersRequest
fn clone(&self) -> ListUsersRequest
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 ListUsersRequest
impl Debug for ListUsersRequest
Source§impl Default for ListUsersRequest
impl Default for ListUsersRequest
Source§fn default() -> ListUsersRequest
fn default() -> ListUsersRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListUsersRequest
impl PartialEq for ListUsersRequest
Source§impl Serialize for ListUsersRequest
impl Serialize for ListUsersRequest
impl StructuralPartialEq for ListUsersRequest
Auto Trait Implementations§
impl Freeze for ListUsersRequest
impl RefUnwindSafe for ListUsersRequest
impl Send for ListUsersRequest
impl Sync for ListUsersRequest
impl Unpin for ListUsersRequest
impl UnwindSafe for ListUsersRequest
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