pub struct AwsElasticsearchDomainDomainEndpointOptions {
pub enforce_https: Option<bool>,
pub tls_security_policy: Option<String>,
}
Expand description
Additional options for the domain endpoint, such as whether to require HTTPS for all traffic.
Fields§
§enforce_https: Option<bool>
Whether to require that all traffic to the domain arrive over HTTPS.
tls_security_policy: Option<String>
The TLS security policy to apply to the HTTPS endpoint of the Elasticsearch domain.
Valid values:
-
Policy-Min-TLS-1-0-2019-07
, which supports TLSv1.0 and higher -
Policy-Min-TLS-1-2-2019-07
, which only supports TLSv1.2
Trait Implementations§
Source§impl Clone for AwsElasticsearchDomainDomainEndpointOptions
impl Clone for AwsElasticsearchDomainDomainEndpointOptions
Source§fn clone(&self) -> AwsElasticsearchDomainDomainEndpointOptions
fn clone(&self) -> AwsElasticsearchDomainDomainEndpointOptions
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Default for AwsElasticsearchDomainDomainEndpointOptions
impl Default for AwsElasticsearchDomainDomainEndpointOptions
Source§fn default() -> AwsElasticsearchDomainDomainEndpointOptions
fn default() -> AwsElasticsearchDomainDomainEndpointOptions
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AwsElasticsearchDomainDomainEndpointOptions
impl<'de> Deserialize<'de> for AwsElasticsearchDomainDomainEndpointOptions
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for AwsElasticsearchDomainDomainEndpointOptions
impl PartialEq for AwsElasticsearchDomainDomainEndpointOptions
Source§fn eq(&self, other: &AwsElasticsearchDomainDomainEndpointOptions) -> bool
fn eq(&self, other: &AwsElasticsearchDomainDomainEndpointOptions) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for AwsElasticsearchDomainDomainEndpointOptions
Auto Trait Implementations§
impl Freeze for AwsElasticsearchDomainDomainEndpointOptions
impl RefUnwindSafe for AwsElasticsearchDomainDomainEndpointOptions
impl Send for AwsElasticsearchDomainDomainEndpointOptions
impl Sync for AwsElasticsearchDomainDomainEndpointOptions
impl Unpin for AwsElasticsearchDomainDomainEndpointOptions
impl UnwindSafe for AwsElasticsearchDomainDomainEndpointOptions
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more