Struct aws_sdk_iot::operation::update_domain_configuration::builders::UpdateDomainConfigurationInputBuilder
source · #[non_exhaustive]pub struct UpdateDomainConfigurationInputBuilder { /* private fields */ }
Expand description
A builder for UpdateDomainConfigurationInput
.
Implementations§
source§impl UpdateDomainConfigurationInputBuilder
impl UpdateDomainConfigurationInputBuilder
sourcepub fn domain_configuration_name(self, input: impl Into<String>) -> Self
pub fn domain_configuration_name(self, input: impl Into<String>) -> Self
The name of the domain configuration to be updated.
This field is required.sourcepub fn set_domain_configuration_name(self, input: Option<String>) -> Self
pub fn set_domain_configuration_name(self, input: Option<String>) -> Self
The name of the domain configuration to be updated.
sourcepub fn get_domain_configuration_name(&self) -> &Option<String>
pub fn get_domain_configuration_name(&self) -> &Option<String>
The name of the domain configuration to be updated.
An object that specifies the authorization service for a domain.
An object that specifies the authorization service for a domain.
An object that specifies the authorization service for a domain.
sourcepub fn domain_configuration_status(
self,
input: DomainConfigurationStatus
) -> Self
pub fn domain_configuration_status( self, input: DomainConfigurationStatus ) -> Self
The status to which the domain configuration should be updated.
sourcepub fn set_domain_configuration_status(
self,
input: Option<DomainConfigurationStatus>
) -> Self
pub fn set_domain_configuration_status( self, input: Option<DomainConfigurationStatus> ) -> Self
The status to which the domain configuration should be updated.
sourcepub fn get_domain_configuration_status(
&self
) -> &Option<DomainConfigurationStatus>
pub fn get_domain_configuration_status( &self ) -> &Option<DomainConfigurationStatus>
The status to which the domain configuration should be updated.
Removes the authorization configuration from a domain.
Removes the authorization configuration from a domain.
Removes the authorization configuration from a domain.
sourcepub fn tls_config(self, input: TlsConfig) -> Self
pub fn tls_config(self, input: TlsConfig) -> Self
An object that specifies the TLS configuration for a domain.
sourcepub fn set_tls_config(self, input: Option<TlsConfig>) -> Self
pub fn set_tls_config(self, input: Option<TlsConfig>) -> Self
An object that specifies the TLS configuration for a domain.
sourcepub fn get_tls_config(&self) -> &Option<TlsConfig>
pub fn get_tls_config(&self) -> &Option<TlsConfig>
An object that specifies the TLS configuration for a domain.
sourcepub fn server_certificate_config(self, input: ServerCertificateConfig) -> Self
pub fn server_certificate_config(self, input: ServerCertificateConfig) -> Self
The server certificate configuration.
sourcepub fn set_server_certificate_config(
self,
input: Option<ServerCertificateConfig>
) -> Self
pub fn set_server_certificate_config( self, input: Option<ServerCertificateConfig> ) -> Self
The server certificate configuration.
sourcepub fn get_server_certificate_config(&self) -> &Option<ServerCertificateConfig>
pub fn get_server_certificate_config(&self) -> &Option<ServerCertificateConfig>
The server certificate configuration.
sourcepub fn build(self) -> Result<UpdateDomainConfigurationInput, BuildError>
pub fn build(self) -> Result<UpdateDomainConfigurationInput, BuildError>
Consumes the builder and constructs a UpdateDomainConfigurationInput
.
source§impl UpdateDomainConfigurationInputBuilder
impl UpdateDomainConfigurationInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<UpdateDomainConfigurationOutput, SdkError<UpdateDomainConfigurationError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<UpdateDomainConfigurationOutput, SdkError<UpdateDomainConfigurationError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for UpdateDomainConfigurationInputBuilder
impl Clone for UpdateDomainConfigurationInputBuilder
source§fn clone(&self) -> UpdateDomainConfigurationInputBuilder
fn clone(&self) -> UpdateDomainConfigurationInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for UpdateDomainConfigurationInputBuilder
impl Default for UpdateDomainConfigurationInputBuilder
source§fn default() -> UpdateDomainConfigurationInputBuilder
fn default() -> UpdateDomainConfigurationInputBuilder
source§impl PartialEq for UpdateDomainConfigurationInputBuilder
impl PartialEq for UpdateDomainConfigurationInputBuilder
source§fn eq(&self, other: &UpdateDomainConfigurationInputBuilder) -> bool
fn eq(&self, other: &UpdateDomainConfigurationInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for UpdateDomainConfigurationInputBuilder
Auto Trait Implementations§
impl Freeze for UpdateDomainConfigurationInputBuilder
impl RefUnwindSafe for UpdateDomainConfigurationInputBuilder
impl Send for UpdateDomainConfigurationInputBuilder
impl Sync for UpdateDomainConfigurationInputBuilder
impl Unpin for UpdateDomainConfigurationInputBuilder
impl UnwindSafe for UpdateDomainConfigurationInputBuilder
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