aws_sdk_applicationdiscovery/client/
start_batch_delete_configuration_task.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 [`StartBatchDeleteConfigurationTask`](crate::operation::start_batch_delete_configuration_task::builders::StartBatchDeleteConfigurationTaskFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`configuration_type(DeletionConfigurationItemType)`](crate::operation::start_batch_delete_configuration_task::builders::StartBatchDeleteConfigurationTaskFluentBuilder::configuration_type) / [`set_configuration_type(Option<DeletionConfigurationItemType>)`](crate::operation::start_batch_delete_configuration_task::builders::StartBatchDeleteConfigurationTaskFluentBuilder::set_configuration_type):<br>required: **true**<br><p>The type of configuration item to delete. Supported types are: SERVER.</p><br>
7    ///   - [`configuration_ids(impl Into<String>)`](crate::operation::start_batch_delete_configuration_task::builders::StartBatchDeleteConfigurationTaskFluentBuilder::configuration_ids) / [`set_configuration_ids(Option<Vec::<String>>)`](crate::operation::start_batch_delete_configuration_task::builders::StartBatchDeleteConfigurationTaskFluentBuilder::set_configuration_ids):<br>required: **true**<br><p>The list of configuration IDs that will be deleted by the task.</p><br>
8    /// - On success, responds with [`StartBatchDeleteConfigurationTaskOutput`](crate::operation::start_batch_delete_configuration_task::StartBatchDeleteConfigurationTaskOutput) with field(s):
9    ///   - [`task_id(Option<String>)`](crate::operation::start_batch_delete_configuration_task::StartBatchDeleteConfigurationTaskOutput::task_id): <p>The unique identifier associated with the newly started deletion task.</p>
10    /// - On failure, responds with [`SdkError<StartBatchDeleteConfigurationTaskError>`](crate::operation::start_batch_delete_configuration_task::StartBatchDeleteConfigurationTaskError)
11    pub fn start_batch_delete_configuration_task(
12        &self,
13    ) -> crate::operation::start_batch_delete_configuration_task::builders::StartBatchDeleteConfigurationTaskFluentBuilder {
14        crate::operation::start_batch_delete_configuration_task::builders::StartBatchDeleteConfigurationTaskFluentBuilder::new(self.handle.clone())
15    }
16}