aws_sdk_config/client/
stop_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 [`StopConfigurationRecorder`](crate::operation::stop_configuration_recorder::builders::StopConfigurationRecorderFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`configuration_recorder_name(impl Into<String>)`](crate::operation::stop_configuration_recorder::builders::StopConfigurationRecorderFluentBuilder::configuration_recorder_name) / [`set_configuration_recorder_name(Option<String>)`](crate::operation::stop_configuration_recorder::builders::StopConfigurationRecorderFluentBuilder::set_configuration_recorder_name):<br>required: **true**<br><p>The name of the customer managed configuration recorder that you want to stop.</p><br>
7    /// - On success, responds with [`StopConfigurationRecorderOutput`](crate::operation::stop_configuration_recorder::StopConfigurationRecorderOutput)
8    /// - On failure, responds with [`SdkError<StopConfigurationRecorderError>`](crate::operation::stop_configuration_recorder::StopConfigurationRecorderError)
9    pub fn stop_configuration_recorder(&self) -> crate::operation::stop_configuration_recorder::builders::StopConfigurationRecorderFluentBuilder {
10        crate::operation::stop_configuration_recorder::builders::StopConfigurationRecorderFluentBuilder::new(self.handle.clone())
11    }
12}