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