Struct aws_sdk_cloudsearch::operation::update_domain_endpoint_options::UpdateDomainEndpointOptionsInput
source · #[non_exhaustive]pub struct UpdateDomainEndpointOptionsInput {
pub domain_name: Option<String>,
pub domain_endpoint_options: Option<DomainEndpointOptions>,
}Expand description
Container for the parameters to the operation. Specifies the name of the domain you want to update and the domain endpoint options.UpdateDomainEndpointOptions
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.domain_name: Option<String>A string that represents the name of a domain.
domain_endpoint_options: Option<DomainEndpointOptions>Whether to require that all requests to the domain arrive over HTTPS. We recommend Policy-Min-TLS-1-2-2019-07 for TLSSecurityPolicy. For compatibility with older clients, the default is Policy-Min-TLS-1-0-2019-07.
Implementations§
source§impl UpdateDomainEndpointOptionsInput
impl UpdateDomainEndpointOptionsInput
sourcepub fn domain_name(&self) -> Option<&str>
pub fn domain_name(&self) -> Option<&str>
A string that represents the name of a domain.
sourcepub fn domain_endpoint_options(&self) -> Option<&DomainEndpointOptions>
pub fn domain_endpoint_options(&self) -> Option<&DomainEndpointOptions>
Whether to require that all requests to the domain arrive over HTTPS. We recommend Policy-Min-TLS-1-2-2019-07 for TLSSecurityPolicy. For compatibility with older clients, the default is Policy-Min-TLS-1-0-2019-07.
source§impl UpdateDomainEndpointOptionsInput
impl UpdateDomainEndpointOptionsInput
sourcepub fn builder() -> UpdateDomainEndpointOptionsInputBuilder
pub fn builder() -> UpdateDomainEndpointOptionsInputBuilder
Creates a new builder-style object to manufacture UpdateDomainEndpointOptionsInput.
Trait Implementations§
source§impl Clone for UpdateDomainEndpointOptionsInput
impl Clone for UpdateDomainEndpointOptionsInput
source§fn clone(&self) -> UpdateDomainEndpointOptionsInput
fn clone(&self) -> UpdateDomainEndpointOptionsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl PartialEq for UpdateDomainEndpointOptionsInput
impl PartialEq for UpdateDomainEndpointOptionsInput
source§fn eq(&self, other: &UpdateDomainEndpointOptionsInput) -> bool
fn eq(&self, other: &UpdateDomainEndpointOptionsInput) -> bool
self and other values to be equal, and is used
by ==.