Struct aws_sdk_cloudsearch::operation::update_domain_endpoint_options::builders::UpdateDomainEndpointOptionsFluentBuilder
source · pub struct UpdateDomainEndpointOptionsFluentBuilder { /* 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 UpdateDomainEndpointOptionsFluentBuilder
impl UpdateDomainEndpointOptionsFluentBuilder
sourcepub fn as_input(&self) -> &UpdateDomainEndpointOptionsInputBuilder
pub fn as_input(&self) -> &UpdateDomainEndpointOptionsInputBuilder
Access the UpdateDomainEndpointOptions as a reference.
sourcepub async fn send(
self
) -> Result<UpdateDomainEndpointOptionsOutput, SdkError<UpdateDomainEndpointOptionsError, HttpResponse>>
pub async fn send( self ) -> Result<UpdateDomainEndpointOptionsOutput, SdkError<UpdateDomainEndpointOptionsError, HttpResponse>>
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 customize(
self
) -> CustomizableOperation<UpdateDomainEndpointOptionsOutput, UpdateDomainEndpointOptionsError, Self>
pub fn customize( self ) -> CustomizableOperation<UpdateDomainEndpointOptionsOutput, UpdateDomainEndpointOptionsError, Self>
Consumes this builder, creating a customizable operation that can be modified before being sent.
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 get_domain_name(&self) -> &Option<String>
pub fn get_domain_name(&self) -> &Option<String>
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.
sourcepub fn get_domain_endpoint_options(&self) -> &Option<DomainEndpointOptions>
pub fn get_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.
Trait Implementations§
source§impl Clone for UpdateDomainEndpointOptionsFluentBuilder
impl Clone for UpdateDomainEndpointOptionsFluentBuilder
source§fn clone(&self) -> UpdateDomainEndpointOptionsFluentBuilder
fn clone(&self) -> UpdateDomainEndpointOptionsFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more