Struct aws_sdk_securityhub::types::builders::AwsOpenSearchServiceDomainDomainEndpointOptionsDetailsBuilder
source · #[non_exhaustive]pub struct AwsOpenSearchServiceDomainDomainEndpointOptionsDetailsBuilder { /* private fields */ }
Expand description
A builder for AwsOpenSearchServiceDomainDomainEndpointOptionsDetails
.
Implementations§
source§impl AwsOpenSearchServiceDomainDomainEndpointOptionsDetailsBuilder
impl AwsOpenSearchServiceDomainDomainEndpointOptionsDetailsBuilder
sourcepub fn custom_endpoint_certificate_arn(self, input: impl Into<String>) -> Self
pub fn custom_endpoint_certificate_arn(self, input: impl Into<String>) -> Self
The ARN for the security certificate. The certificate is managed in ACM.
sourcepub fn set_custom_endpoint_certificate_arn(self, input: Option<String>) -> Self
pub fn set_custom_endpoint_certificate_arn(self, input: Option<String>) -> Self
The ARN for the security certificate. The certificate is managed in ACM.
sourcepub fn get_custom_endpoint_certificate_arn(&self) -> &Option<String>
pub fn get_custom_endpoint_certificate_arn(&self) -> &Option<String>
The ARN for the security certificate. The certificate is managed in ACM.
sourcepub fn custom_endpoint_enabled(self, input: bool) -> Self
pub fn custom_endpoint_enabled(self, input: bool) -> Self
Whether to enable a custom endpoint for the domain.
sourcepub fn set_custom_endpoint_enabled(self, input: Option<bool>) -> Self
pub fn set_custom_endpoint_enabled(self, input: Option<bool>) -> Self
Whether to enable a custom endpoint for the domain.
sourcepub fn get_custom_endpoint_enabled(&self) -> &Option<bool>
pub fn get_custom_endpoint_enabled(&self) -> &Option<bool>
Whether to enable a custom endpoint for the domain.
sourcepub fn enforce_https(self, input: bool) -> Self
pub fn enforce_https(self, input: bool) -> Self
Whether to require that all traffic to the domain arrive over HTTPS.
sourcepub fn set_enforce_https(self, input: Option<bool>) -> Self
pub fn set_enforce_https(self, input: Option<bool>) -> Self
Whether to require that all traffic to the domain arrive over HTTPS.
sourcepub fn get_enforce_https(&self) -> &Option<bool>
pub fn get_enforce_https(&self) -> &Option<bool>
Whether to require that all traffic to the domain arrive over HTTPS.
sourcepub fn custom_endpoint(self, input: impl Into<String>) -> Self
pub fn custom_endpoint(self, input: impl Into<String>) -> Self
The fully qualified URL for the custom endpoint.
sourcepub fn set_custom_endpoint(self, input: Option<String>) -> Self
pub fn set_custom_endpoint(self, input: Option<String>) -> Self
The fully qualified URL for the custom endpoint.
sourcepub fn get_custom_endpoint(&self) -> &Option<String>
pub fn get_custom_endpoint(&self) -> &Option<String>
The fully qualified URL for the custom endpoint.
sourcepub fn tls_security_policy(self, input: impl Into<String>) -> Self
pub fn tls_security_policy(self, input: impl Into<String>) -> Self
The TLS security policy to apply to the HTTPS endpoint of the OpenSearch domain.
sourcepub fn set_tls_security_policy(self, input: Option<String>) -> Self
pub fn set_tls_security_policy(self, input: Option<String>) -> Self
The TLS security policy to apply to the HTTPS endpoint of the OpenSearch domain.
sourcepub fn get_tls_security_policy(&self) -> &Option<String>
pub fn get_tls_security_policy(&self) -> &Option<String>
The TLS security policy to apply to the HTTPS endpoint of the OpenSearch domain.
sourcepub fn build(self) -> AwsOpenSearchServiceDomainDomainEndpointOptionsDetails
pub fn build(self) -> AwsOpenSearchServiceDomainDomainEndpointOptionsDetails
Consumes the builder and constructs a AwsOpenSearchServiceDomainDomainEndpointOptionsDetails
.
Trait Implementations§
source§impl Clone for AwsOpenSearchServiceDomainDomainEndpointOptionsDetailsBuilder
impl Clone for AwsOpenSearchServiceDomainDomainEndpointOptionsDetailsBuilder
source§fn clone(&self) -> AwsOpenSearchServiceDomainDomainEndpointOptionsDetailsBuilder
fn clone(&self) -> AwsOpenSearchServiceDomainDomainEndpointOptionsDetailsBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for AwsOpenSearchServiceDomainDomainEndpointOptionsDetailsBuilder
impl Default for AwsOpenSearchServiceDomainDomainEndpointOptionsDetailsBuilder
source§fn default() -> AwsOpenSearchServiceDomainDomainEndpointOptionsDetailsBuilder
fn default() -> AwsOpenSearchServiceDomainDomainEndpointOptionsDetailsBuilder
source§impl PartialEq for AwsOpenSearchServiceDomainDomainEndpointOptionsDetailsBuilder
impl PartialEq for AwsOpenSearchServiceDomainDomainEndpointOptionsDetailsBuilder
source§fn eq(
&self,
other: &AwsOpenSearchServiceDomainDomainEndpointOptionsDetailsBuilder
) -> bool
fn eq( &self, other: &AwsOpenSearchServiceDomainDomainEndpointOptionsDetailsBuilder ) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for AwsOpenSearchServiceDomainDomainEndpointOptionsDetailsBuilder
Auto Trait Implementations§
impl Freeze for AwsOpenSearchServiceDomainDomainEndpointOptionsDetailsBuilder
impl RefUnwindSafe for AwsOpenSearchServiceDomainDomainEndpointOptionsDetailsBuilder
impl Send for AwsOpenSearchServiceDomainDomainEndpointOptionsDetailsBuilder
impl Sync for AwsOpenSearchServiceDomainDomainEndpointOptionsDetailsBuilder
impl Unpin for AwsOpenSearchServiceDomainDomainEndpointOptionsDetailsBuilder
impl UnwindSafe for AwsOpenSearchServiceDomainDomainEndpointOptionsDetailsBuilder
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more