aws_sdk_config/client/
delete_configuration_recorder.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 [`DeleteConfigurationRecorder`](crate::operation::delete_configuration_recorder::builders::DeleteConfigurationRecorderFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`configuration_recorder_name(impl Into<String>)`](crate::operation::delete_configuration_recorder::builders::DeleteConfigurationRecorderFluentBuilder::configuration_recorder_name) / [`set_configuration_recorder_name(Option<String>)`](crate::operation::delete_configuration_recorder::builders::DeleteConfigurationRecorderFluentBuilder::set_configuration_recorder_name):<br>required: **true**<br><p>The name of the customer managed configuration recorder that you want to delete. You can retrieve the name of your configuration recorders by using the <a href="https://docs.aws.amazon.com/config/latest/APIReference/API_DescribeConfigurationRecorders.html">DescribeConfigurationRecorders</a> operation.</p><br>
7    /// - On success, responds with [`DeleteConfigurationRecorderOutput`](crate::operation::delete_configuration_recorder::DeleteConfigurationRecorderOutput)
8    /// - On failure, responds with [`SdkError<DeleteConfigurationRecorderError>`](crate::operation::delete_configuration_recorder::DeleteConfigurationRecorderError)
9    pub fn delete_configuration_recorder(
10        &self,
11    ) -> crate::operation::delete_configuration_recorder::builders::DeleteConfigurationRecorderFluentBuilder {
12        crate::operation::delete_configuration_recorder::builders::DeleteConfigurationRecorderFluentBuilder::new(self.handle.clone())
13    }
14}