Struct aws_sdk_iot::client::fluent_builders::UpdateCACertificate
source · pub struct UpdateCACertificate { /* private fields */ }
Expand description
Fluent builder constructing a request to UpdateCACertificate
.
Updates a registered CA certificate.
Requires permission to access the UpdateCACertificate action.
Implementations§
source§impl UpdateCACertificate
impl UpdateCACertificate
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<UpdateCACertificate, AwsResponseRetryClassifier>, SdkError<UpdateCACertificateError>>
pub async fn customize(
self
) -> Result<CustomizableOperation<UpdateCACertificate, AwsResponseRetryClassifier>, SdkError<UpdateCACertificateError>>
Consume this builder, creating a customizable operation that can be modified before being sent. The operation’s inner http::Request can be modified as well.
sourcepub async fn send(
self
) -> Result<UpdateCaCertificateOutput, SdkError<UpdateCACertificateError>>
pub async fn send(
self
) -> Result<UpdateCaCertificateOutput, SdkError<UpdateCACertificateError>>
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 certificate_id(self, input: impl Into<String>) -> Self
pub fn certificate_id(self, input: impl Into<String>) -> Self
The CA certificate identifier.
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 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 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 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 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.
Trait Implementations§
source§impl Clone for UpdateCACertificate
impl Clone for UpdateCACertificate
source§fn clone(&self) -> UpdateCACertificate
fn clone(&self) -> UpdateCACertificate
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more