Struct aws_sdk_mq::output::ListUsersOutput
source · [−]#[non_exhaustive]pub struct ListUsersOutput {
pub broker_id: Option<String>,
pub max_results: i32,
pub next_token: Option<String>,
pub users: Option<Vec<UserSummary>>,
}
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.broker_id: Option<String>
Required. The unique ID that Amazon MQ generates for the broker.
max_results: i32
Required. 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.
users: Option<Vec<UserSummary>>
Required. The list of all ActiveMQ usernames for the specified broker. Does not apply to RabbitMQ brokers.
Implementations
Required. The unique ID that Amazon MQ generates for the broker.
Required. 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.
The token that specifies the next page of results Amazon MQ should return. To request the first page, leave nextToken empty.
Creates a new builder-style object to manufacture ListUsersOutput
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for ListUsersOutput
impl Send for ListUsersOutput
impl Sync for ListUsersOutput
impl Unpin for ListUsersOutput
impl UnwindSafe for ListUsersOutput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more