pub struct UpdateUserRequest {
pub broker_id: String,
pub console_access: Option<bool>,
pub groups: Option<Vec<String>>,
pub password: Option<String>,
pub username: String,
}
Expand description
Updates the information for an ActiveMQ user.
Fields§
§broker_id: String
The unique ID that Amazon MQ generates for the broker.
console_access: Option<bool>
Enables access to the the ActiveMQ Web Console for the ActiveMQ user.
groups: Option<Vec<String>>
The list of groups (20 maximum) to which the ActiveMQ user belongs. This value can contain only alphanumeric characters, dashes, periods, underscores, and tildes (- . _ ~). This value must be 2-100 characters long.
password: Option<String>
The password of the user. This value must be at least 12 characters long, must contain at least 4 unique characters, and must not contain commas.
username: String
Required. The username of the ActiveMQ user. This value can contain only alphanumeric characters, dashes, periods, underscores, and tildes (- . _ ~). This value must be 2-100 characters long.
Trait Implementations§
Source§impl Clone for UpdateUserRequest
impl Clone for UpdateUserRequest
Source§fn clone(&self) -> UpdateUserRequest
fn clone(&self) -> UpdateUserRequest
Returns a copy 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 UpdateUserRequest
impl Debug for UpdateUserRequest
Source§impl Default for UpdateUserRequest
impl Default for UpdateUserRequest
Source§fn default() -> UpdateUserRequest
fn default() -> UpdateUserRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for UpdateUserRequest
impl PartialEq for UpdateUserRequest
Source§impl Serialize for UpdateUserRequest
impl Serialize for UpdateUserRequest
impl StructuralPartialEq for UpdateUserRequest
Auto Trait Implementations§
impl Freeze for UpdateUserRequest
impl RefUnwindSafe for UpdateUserRequest
impl Send for UpdateUserRequest
impl Sync for UpdateUserRequest
impl Unpin for UpdateUserRequest
impl UnwindSafe for UpdateUserRequest
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