[][src]Struct rusoto_es::DomainEndpointOptions

pub struct DomainEndpointOptions {
    pub enforce_https: Option<bool>,
    pub tls_security_policy: Option<String>,
}

Options to configure endpoint for the Elasticsearch domain.

Fields

enforce_https: Option<bool>

Specify if only HTTPS endpoint should be enabled for the Elasticsearch domain.

tls_security_policy: Option<String>

Specify the TLS security policy that needs to be applied to the HTTPS endpoint of Elasticsearch domain.
It can be one of the following values:

  • Policy-Min-TLS-1-0-2019-07: TLS security policy which supports TLSv1.0 and higher.
  • Policy-Min-TLS-1-2-2019-07: TLS security policy which supports only TLSv1.2

Trait Implementations

impl Clone for DomainEndpointOptions[src]

impl Debug for DomainEndpointOptions[src]

impl Default for DomainEndpointOptions[src]

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

impl PartialEq<DomainEndpointOptions> for DomainEndpointOptions[src]

impl Serialize for DomainEndpointOptions[src]

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