aws_sdk_iotmanagedintegrations/client/
delete_ota_task_configuration.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3    /// Constructs a fluent builder for the [`DeleteOtaTaskConfiguration`](crate::operation::delete_ota_task_configuration::builders::DeleteOtaTaskConfigurationFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`identifier(impl Into<String>)`](crate::operation::delete_ota_task_configuration::builders::DeleteOtaTaskConfigurationFluentBuilder::identifier) / [`set_identifier(Option<String>)`](crate::operation::delete_ota_task_configuration::builders::DeleteOtaTaskConfigurationFluentBuilder::set_identifier):<br>required: **true**<br><p>The identifier of the over-the-air (OTA) task configuration.</p><br>
7    /// - On success, responds with [`DeleteOtaTaskConfigurationOutput`](crate::operation::delete_ota_task_configuration::DeleteOtaTaskConfigurationOutput)
8    /// - On failure, responds with [`SdkError<DeleteOtaTaskConfigurationError>`](crate::operation::delete_ota_task_configuration::DeleteOtaTaskConfigurationError)
9    pub fn delete_ota_task_configuration(
10        &self,
11    ) -> crate::operation::delete_ota_task_configuration::builders::DeleteOtaTaskConfigurationFluentBuilder {
12        crate::operation::delete_ota_task_configuration::builders::DeleteOtaTaskConfigurationFluentBuilder::new(self.handle.clone())
13    }
14}