List Users
| mq_list_users | R Documentation |
Returns a list of all ActiveMQ users¶
Description¶
Returns a list of all ActiveMQ users.
Usage¶
Arguments¶
BrokerId[required] The unique ID that Amazon MQ generates for the broker.
MaxResultsThe maximum number of brokers that Amazon MQ can return per page (20 by default). This value must be an integer from 5 to 100.
NextTokenThe token that specifies the next page of results Amazon MQ should return. To request the first page, leave nextToken empty.
Value¶
A list with the following syntax:
list(
BrokerId = "string",
MaxResults = 123,
NextToken = "string",
Users = list(
list(
PendingChange = "CREATE"|"UPDATE"|"DELETE",
Username = "string"
)
)
)