[][src]Struct rusoto_es::AdvancedSecurityOptionsInput

pub struct AdvancedSecurityOptionsInput {
    pub enabled: Option<bool>,
    pub internal_user_database_enabled: Option<bool>,
    pub master_user_options: Option<MasterUserOptions>,
}

Specifies the advanced security configuration: whether advanced security is enabled, whether the internal database option is enabled, master username and password (if internal database is enabled), and master user ARN (if IAM is enabled).

Fields

enabled: Option<bool>

True if advanced security is enabled.

internal_user_database_enabled: Option<bool>

True if the internal user database is enabled.

master_user_options: Option<MasterUserOptions>

Credentials for the master user: username and password, ARN, or both.

Trait Implementations

impl Clone for AdvancedSecurityOptionsInput[src]

impl Debug for AdvancedSecurityOptionsInput[src]

impl Default for AdvancedSecurityOptionsInput[src]

impl PartialEq<AdvancedSecurityOptionsInput> for AdvancedSecurityOptionsInput[src]

impl Serialize for AdvancedSecurityOptionsInput[src]

impl StructuralPartialEq for AdvancedSecurityOptionsInput[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> 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.