[][src]Struct rusoto_es::CognitoOptions

pub struct CognitoOptions {
    pub enabled: Option<bool>,
    pub identity_pool_id: Option<String>,
    pub role_arn: Option<String>,
    pub user_pool_id: Option<String>,
}

Options to specify the Cognito user and identity pools for Kibana authentication. For more information, see Amazon Cognito Authentication for Kibana.

Fields

enabled: Option<bool>

Specifies the option to enable Cognito for Kibana authentication.

identity_pool_id: Option<String>

Specifies the Cognito identity pool ID for Kibana authentication.

role_arn: Option<String>

Specifies the role ARN that provides Elasticsearch permissions for accessing Cognito resources.

user_pool_id: Option<String>

Specifies the Cognito user pool ID for Kibana authentication.

Trait Implementations

impl Clone for CognitoOptions[src]

impl Debug for CognitoOptions[src]

impl Default for CognitoOptions[src]

impl<'de> Deserialize<'de> for CognitoOptions[src]

impl PartialEq<CognitoOptions> for CognitoOptions[src]

impl Serialize for CognitoOptions[src]

impl StructuralPartialEq for CognitoOptions[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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.