[][src]Struct rusoto_elasticache::ModifyUserMessage

pub struct ModifyUserMessage {
    pub access_string: Option<String>,
    pub append_access_string: Option<String>,
    pub no_password_required: Option<bool>,
    pub passwords: Option<Vec<String>>,
    pub user_id: String,
}

Fields

access_string: Option<String>

Access permissions string used for this user account.

append_access_string: Option<String>

Adds additional user permissions to the access string.

no_password_required: Option<bool>

Indicates no password is required for the user account.

passwords: Option<Vec<String>>

The passwords belonging to the user account. You are allowed up to two.

user_id: String

The ID of the user.

Trait Implementations

impl Clone for ModifyUserMessage[src]

impl Debug for ModifyUserMessage[src]

impl Default for ModifyUserMessage[src]

impl PartialEq<ModifyUserMessage> for ModifyUserMessage[src]

impl StructuralPartialEq for ModifyUserMessage[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.