Struct aws_sdk_iot::operation::update_ca_certificate::builders::UpdateCaCertificateInputBuilder
source · #[non_exhaustive]pub struct UpdateCaCertificateInputBuilder { /* private fields */ }Expand description
A builder for UpdateCaCertificateInput.
Implementations§
source§impl UpdateCaCertificateInputBuilder
impl UpdateCaCertificateInputBuilder
sourcepub fn certificate_id(self, input: impl Into<String>) -> Self
pub fn certificate_id(self, input: impl Into<String>) -> Self
The CA certificate identifier.
This field is required.sourcepub fn set_certificate_id(self, input: Option<String>) -> Self
pub fn set_certificate_id(self, input: Option<String>) -> Self
The CA certificate identifier.
sourcepub fn get_certificate_id(&self) -> &Option<String>
pub fn get_certificate_id(&self) -> &Option<String>
The CA certificate identifier.
sourcepub fn new_status(self, input: CaCertificateStatus) -> Self
pub fn new_status(self, input: CaCertificateStatus) -> Self
The updated status of the CA certificate.
Note: The status value REGISTER_INACTIVE is deprecated and should not be used.
sourcepub fn set_new_status(self, input: Option<CaCertificateStatus>) -> Self
pub fn set_new_status(self, input: Option<CaCertificateStatus>) -> Self
The updated status of the CA certificate.
Note: The status value REGISTER_INACTIVE is deprecated and should not be used.
sourcepub fn get_new_status(&self) -> &Option<CaCertificateStatus>
pub fn get_new_status(&self) -> &Option<CaCertificateStatus>
The updated status of the CA certificate.
Note: The status value REGISTER_INACTIVE is deprecated and should not be used.
sourcepub fn new_auto_registration_status(self, input: AutoRegistrationStatus) -> Self
pub fn new_auto_registration_status(self, input: AutoRegistrationStatus) -> Self
The new value for the auto registration status. Valid values are: "ENABLE" or "DISABLE".
sourcepub fn set_new_auto_registration_status(
self,
input: Option<AutoRegistrationStatus>,
) -> Self
pub fn set_new_auto_registration_status( self, input: Option<AutoRegistrationStatus>, ) -> Self
The new value for the auto registration status. Valid values are: "ENABLE" or "DISABLE".
sourcepub fn get_new_auto_registration_status(
&self,
) -> &Option<AutoRegistrationStatus>
pub fn get_new_auto_registration_status( &self, ) -> &Option<AutoRegistrationStatus>
The new value for the auto registration status. Valid values are: "ENABLE" or "DISABLE".
sourcepub fn registration_config(self, input: RegistrationConfig) -> Self
pub fn registration_config(self, input: RegistrationConfig) -> Self
Information about the registration configuration.
sourcepub fn set_registration_config(self, input: Option<RegistrationConfig>) -> Self
pub fn set_registration_config(self, input: Option<RegistrationConfig>) -> Self
Information about the registration configuration.
sourcepub fn get_registration_config(&self) -> &Option<RegistrationConfig>
pub fn get_registration_config(&self) -> &Option<RegistrationConfig>
Information about the registration configuration.
sourcepub fn remove_auto_registration(self, input: bool) -> Self
pub fn remove_auto_registration(self, input: bool) -> Self
If true, removes auto registration.
sourcepub fn set_remove_auto_registration(self, input: Option<bool>) -> Self
pub fn set_remove_auto_registration(self, input: Option<bool>) -> Self
If true, removes auto registration.
sourcepub fn get_remove_auto_registration(&self) -> &Option<bool>
pub fn get_remove_auto_registration(&self) -> &Option<bool>
If true, removes auto registration.
sourcepub fn build(self) -> Result<UpdateCaCertificateInput, BuildError>
pub fn build(self) -> Result<UpdateCaCertificateInput, BuildError>
Consumes the builder and constructs a UpdateCaCertificateInput.
source§impl UpdateCaCertificateInputBuilder
impl UpdateCaCertificateInputBuilder
sourcepub async fn send_with(
self,
client: &Client,
) -> Result<UpdateCaCertificateOutput, SdkError<UpdateCACertificateError, HttpResponse>>
pub async fn send_with( self, client: &Client, ) -> Result<UpdateCaCertificateOutput, SdkError<UpdateCACertificateError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for UpdateCaCertificateInputBuilder
impl Clone for UpdateCaCertificateInputBuilder
source§fn clone(&self) -> UpdateCaCertificateInputBuilder
fn clone(&self) -> UpdateCaCertificateInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for UpdateCaCertificateInputBuilder
impl Default for UpdateCaCertificateInputBuilder
source§fn default() -> UpdateCaCertificateInputBuilder
fn default() -> UpdateCaCertificateInputBuilder
source§impl PartialEq for UpdateCaCertificateInputBuilder
impl PartialEq for UpdateCaCertificateInputBuilder
source§fn eq(&self, other: &UpdateCaCertificateInputBuilder) -> bool
fn eq(&self, other: &UpdateCaCertificateInputBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for UpdateCaCertificateInputBuilder
Auto Trait Implementations§
impl Freeze for UpdateCaCertificateInputBuilder
impl RefUnwindSafe for UpdateCaCertificateInputBuilder
impl Send for UpdateCaCertificateInputBuilder
impl Sync for UpdateCaCertificateInputBuilder
impl Unpin for UpdateCaCertificateInputBuilder
impl UnwindSafe for UpdateCaCertificateInputBuilder
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)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