[][src]Struct rusoto_es::SAMLOptionsInput

pub struct SAMLOptionsInput {
    pub enabled: Option<bool>,
    pub idp: Option<SAMLIdp>,
    pub master_backend_role: Option<String>,
    pub master_user_name: Option<String>,
    pub roles_key: Option<String>,
    pub session_timeout_minutes: Option<i64>,
    pub subject_key: Option<String>,
}

Specifies the SAML application configuration for the domain.

Fields

enabled: Option<bool>

True if SAML is enabled.

idp: Option<SAMLIdp>

Specifies the SAML Identity Provider's information.

master_backend_role: Option<String>

The backend role to which the SAML master user is mapped to.

master_user_name: Option<String>

The SAML master username, which is stored in the Amazon Elasticsearch Service domain's internal database.

roles_key: Option<String>

The key to use for matching the SAML Roles attribute.

session_timeout_minutes: Option<i64>

The duration, in minutes, after which a user session becomes inactive. Acceptable values are between 1 and 1440, and the default value is 60.

subject_key: Option<String>

The key to use for matching the SAML Subject attribute.

Trait Implementations

impl Clone for SAMLOptionsInput[src]

impl Debug for SAMLOptionsInput[src]

impl Default for SAMLOptionsInput[src]

impl PartialEq<SAMLOptionsInput> for SAMLOptionsInput[src]

impl Serialize for SAMLOptionsInput[src]

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