pub struct CreateUserRequest {
pub broker_id: String,
pub console_access: Option<bool>,
pub groups: Option<Vec<String>>,
pub password: Option<String>,
pub username: String,
}
Expand description
Creates a new 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>
Required. 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
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 CreateUserRequest
impl Clone for CreateUserRequest
Source§fn clone(&self) -> CreateUserRequest
fn clone(&self) -> CreateUserRequest
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 CreateUserRequest
impl Debug for CreateUserRequest
Source§impl Default for CreateUserRequest
impl Default for CreateUserRequest
Source§fn default() -> CreateUserRequest
fn default() -> CreateUserRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for CreateUserRequest
impl PartialEq for CreateUserRequest
Source§impl Serialize for CreateUserRequest
impl Serialize for CreateUserRequest
impl StructuralPartialEq for CreateUserRequest
Auto Trait Implementations§
impl Freeze for CreateUserRequest
impl RefUnwindSafe for CreateUserRequest
impl Send for CreateUserRequest
impl Sync for CreateUserRequest
impl Unpin for CreateUserRequest
impl UnwindSafe for CreateUserRequest
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