/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The input for the StopConfigurationRecorder action.See
* Also:
AWS
* API Reference
The name of the recorder object that records each configuration change made * to the resources.
*/ inline const Aws::String& GetConfigurationRecorderName() const{ return m_configurationRecorderName; } /** *The name of the recorder object that records each configuration change made * to the resources.
*/ inline bool ConfigurationRecorderNameHasBeenSet() const { return m_configurationRecorderNameHasBeenSet; } /** *The name of the recorder object that records each configuration change made * to the resources.
*/ inline void SetConfigurationRecorderName(const Aws::String& value) { m_configurationRecorderNameHasBeenSet = true; m_configurationRecorderName = value; } /** *The name of the recorder object that records each configuration change made * to the resources.
*/ inline void SetConfigurationRecorderName(Aws::String&& value) { m_configurationRecorderNameHasBeenSet = true; m_configurationRecorderName = std::move(value); } /** *The name of the recorder object that records each configuration change made * to the resources.
*/ inline void SetConfigurationRecorderName(const char* value) { m_configurationRecorderNameHasBeenSet = true; m_configurationRecorderName.assign(value); } /** *The name of the recorder object that records each configuration change made * to the resources.
*/ inline StopConfigurationRecorderRequest& WithConfigurationRecorderName(const Aws::String& value) { SetConfigurationRecorderName(value); return *this;} /** *The name of the recorder object that records each configuration change made * to the resources.
*/ inline StopConfigurationRecorderRequest& WithConfigurationRecorderName(Aws::String&& value) { SetConfigurationRecorderName(std::move(value)); return *this;} /** *The name of the recorder object that records each configuration change made * to the resources.
*/ inline StopConfigurationRecorderRequest& WithConfigurationRecorderName(const char* value) { SetConfigurationRecorderName(value); return *this;} private: Aws::String m_configurationRecorderName; bool m_configurationRecorderNameHasBeenSet = false; }; } // namespace Model } // namespace ConfigService } // namespace Aws