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.
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.
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.
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 build(self) -> Result<UpdateDomainConfigurationInput, BuildError>
pub fn build(self) -> Result<UpdateDomainConfigurationInput, BuildError>
Consumes the builder and constructs a UpdateDomainConfigurationInput
.
Trait Implementations§
source§impl Clone for UpdateDomainConfigurationInputBuilder
impl Clone for UpdateDomainConfigurationInputBuilder
source§fn clone(&self) -> UpdateDomainConfigurationInputBuilder
fn clone(&self) -> UpdateDomainConfigurationInputBuilder
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Default for UpdateDomainConfigurationInputBuilder
impl Default for UpdateDomainConfigurationInputBuilder
source§fn default() -> UpdateDomainConfigurationInputBuilder
fn default() -> UpdateDomainConfigurationInputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<UpdateDomainConfigurationInputBuilder> for UpdateDomainConfigurationInputBuilder
impl PartialEq<UpdateDomainConfigurationInputBuilder> for UpdateDomainConfigurationInputBuilder
source§fn eq(&self, other: &UpdateDomainConfigurationInputBuilder) -> bool
fn eq(&self, other: &UpdateDomainConfigurationInputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for UpdateDomainConfigurationInputBuilder
Auto Trait Implementations§
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
Mutably borrows from an owned value. Read more