Struct aws_sdk_iot::client::fluent_builders::DeleteOTAUpdate
source · pub struct DeleteOTAUpdate { /* private fields */ }
Expand description
Fluent builder constructing a request to DeleteOTAUpdate
.
Delete an OTA update.
Requires permission to access the DeleteOTAUpdate action.
Implementations§
source§impl DeleteOTAUpdate
impl DeleteOTAUpdate
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<DeleteOTAUpdate, AwsResponseRetryClassifier>, SdkError<DeleteOTAUpdateError>>
pub async fn customize(
self
) -> Result<CustomizableOperation<DeleteOTAUpdate, AwsResponseRetryClassifier>, SdkError<DeleteOTAUpdateError>>
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<DeleteOtaUpdateOutput, SdkError<DeleteOTAUpdateError>>
pub async fn send(
self
) -> Result<DeleteOtaUpdateOutput, SdkError<DeleteOTAUpdateError>>
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 ota_update_id(self, input: impl Into<String>) -> Self
pub fn ota_update_id(self, input: impl Into<String>) -> Self
The ID of the OTA update to delete.
sourcepub fn set_ota_update_id(self, input: Option<String>) -> Self
pub fn set_ota_update_id(self, input: Option<String>) -> Self
The ID of the OTA update to delete.
sourcepub fn delete_stream(self, input: bool) -> Self
pub fn delete_stream(self, input: bool) -> Self
When true, the stream created by the OTAUpdate process is deleted when the OTA update is deleted. Ignored if the stream specified in the OTAUpdate is supplied by the user.
sourcepub fn set_delete_stream(self, input: Option<bool>) -> Self
pub fn set_delete_stream(self, input: Option<bool>) -> Self
When true, the stream created by the OTAUpdate process is deleted when the OTA update is deleted. Ignored if the stream specified in the OTAUpdate is supplied by the user.
sourcepub fn force_delete_aws_job(self, input: bool) -> Self
pub fn force_delete_aws_job(self, input: bool) -> Self
When true, deletes the IoT job created by the OTAUpdate process even if it is "IN_PROGRESS". Otherwise, if the job is not in a terminal state ("COMPLETED" or "CANCELED") an exception will occur. The default is false.
sourcepub fn set_force_delete_aws_job(self, input: Option<bool>) -> Self
pub fn set_force_delete_aws_job(self, input: Option<bool>) -> Self
When true, deletes the IoT job created by the OTAUpdate process even if it is "IN_PROGRESS". Otherwise, if the job is not in a terminal state ("COMPLETED" or "CANCELED") an exception will occur. The default is false.
Trait Implementations§
source§impl Clone for DeleteOTAUpdate
impl Clone for DeleteOTAUpdate
source§fn clone(&self) -> DeleteOTAUpdate
fn clone(&self) -> DeleteOTAUpdate
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more