pub struct UpdateDomainEndpointOptions { /* private fields */ }Expand description
Fluent builder constructing a request to UpdateDomainEndpointOptions.
Updates the domain's endpoint options, specifically whether all requests to the domain must arrive over HTTPS. For more information, see Configuring Domain Endpoint Options in the Amazon CloudSearch Developer Guide.
Implementations§
source§impl UpdateDomainEndpointOptions
impl UpdateDomainEndpointOptions
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<UpdateDomainEndpointOptions, AwsResponseRetryClassifier>, SdkError<UpdateDomainEndpointOptionsError>>
pub async fn customize(
self
) -> Result<CustomizableOperation<UpdateDomainEndpointOptions, AwsResponseRetryClassifier>, SdkError<UpdateDomainEndpointOptionsError>>
Consume this builder, creating a customizable operation that can be modified before being sent. The operation’s inner http::Request can be modified as well.
sourcepub async fn send(
self
) -> Result<UpdateDomainEndpointOptionsOutput, SdkError<UpdateDomainEndpointOptionsError>>
pub async fn send(
self
) -> Result<UpdateDomainEndpointOptionsOutput, SdkError<UpdateDomainEndpointOptionsError>>
Sends the request and returns the response.
If an error occurs, an SdkError will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn domain_name(self, input: impl Into<String>) -> Self
pub fn domain_name(self, input: impl Into<String>) -> Self
A string that represents the name of a domain.
sourcepub fn set_domain_name(self, input: Option<String>) -> Self
pub fn set_domain_name(self, input: Option<String>) -> Self
A string that represents the name of a domain.
sourcepub fn domain_endpoint_options(self, input: DomainEndpointOptions) -> Self
pub fn domain_endpoint_options(self, input: DomainEndpointOptions) -> Self
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.
sourcepub fn set_domain_endpoint_options(
self,
input: Option<DomainEndpointOptions>
) -> Self
pub fn set_domain_endpoint_options(
self,
input: Option<DomainEndpointOptions>
) -> Self
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.
Trait Implementations§
source§impl Clone for UpdateDomainEndpointOptions
impl Clone for UpdateDomainEndpointOptions
source§fn clone(&self) -> UpdateDomainEndpointOptions
fn clone(&self) -> UpdateDomainEndpointOptions
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more