aws_sdk_applicationdiscovery/client/describe_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 [`DescribeBatchDeleteConfigurationTask`](crate::operation::describe_batch_delete_configuration_task::builders::DescribeBatchDeleteConfigurationTaskFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`task_id(impl Into<String>)`](crate::operation::describe_batch_delete_configuration_task::builders::DescribeBatchDeleteConfigurationTaskFluentBuilder::task_id) / [`set_task_id(Option<String>)`](crate::operation::describe_batch_delete_configuration_task::builders::DescribeBatchDeleteConfigurationTaskFluentBuilder::set_task_id):<br>required: **true**<br><p>The ID of the task to delete.</p><br>
7 /// - On success, responds with [`DescribeBatchDeleteConfigurationTaskOutput`](crate::operation::describe_batch_delete_configuration_task::DescribeBatchDeleteConfigurationTaskOutput) with field(s):
8 /// - [`task(Option<BatchDeleteConfigurationTask>)`](crate::operation::describe_batch_delete_configuration_task::DescribeBatchDeleteConfigurationTaskOutput::task): <p>The <code>BatchDeleteConfigurationTask</code> that represents the deletion task being executed.</p>
9 /// - On failure, responds with [`SdkError<DescribeBatchDeleteConfigurationTaskError>`](crate::operation::describe_batch_delete_configuration_task::DescribeBatchDeleteConfigurationTaskError)
10 pub fn describe_batch_delete_configuration_task(
11 &self,
12 ) -> crate::operation::describe_batch_delete_configuration_task::builders::DescribeBatchDeleteConfigurationTaskFluentBuilder {
13 crate::operation::describe_batch_delete_configuration_task::builders::DescribeBatchDeleteConfigurationTaskFluentBuilder::new(
14 self.handle.clone(),
15 )
16 }
17}