/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace ConfigService { namespace Model { /** *

The output for the DescribeConfigurationRecorderStatus action, in JSON * format.

See Also:

AWS * API Reference

*/ class DescribeConfigurationRecorderStatusResult { public: AWS_CONFIGSERVICE_API DescribeConfigurationRecorderStatusResult(); AWS_CONFIGSERVICE_API DescribeConfigurationRecorderStatusResult(const Aws::AmazonWebServiceResult& result); AWS_CONFIGSERVICE_API DescribeConfigurationRecorderStatusResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

A list that contains status of the specified recorders.

*/ inline const Aws::Vector& GetConfigurationRecordersStatus() const{ return m_configurationRecordersStatus; } /** *

A list that contains status of the specified recorders.

*/ inline void SetConfigurationRecordersStatus(const Aws::Vector& value) { m_configurationRecordersStatus = value; } /** *

A list that contains status of the specified recorders.

*/ inline void SetConfigurationRecordersStatus(Aws::Vector&& value) { m_configurationRecordersStatus = std::move(value); } /** *

A list that contains status of the specified recorders.

*/ inline DescribeConfigurationRecorderStatusResult& WithConfigurationRecordersStatus(const Aws::Vector& value) { SetConfigurationRecordersStatus(value); return *this;} /** *

A list that contains status of the specified recorders.

*/ inline DescribeConfigurationRecorderStatusResult& WithConfigurationRecordersStatus(Aws::Vector&& value) { SetConfigurationRecordersStatus(std::move(value)); return *this;} /** *

A list that contains status of the specified recorders.

*/ inline DescribeConfigurationRecorderStatusResult& AddConfigurationRecordersStatus(const ConfigurationRecorderStatus& value) { m_configurationRecordersStatus.push_back(value); return *this; } /** *

A list that contains status of the specified recorders.

*/ inline DescribeConfigurationRecorderStatusResult& AddConfigurationRecordersStatus(ConfigurationRecorderStatus&& value) { m_configurationRecordersStatus.push_back(std::move(value)); return *this; } inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline DescribeConfigurationRecorderStatusResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline DescribeConfigurationRecorderStatusResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline DescribeConfigurationRecorderStatusResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::Vector m_configurationRecordersStatus; Aws::String m_requestId; }; } // namespace Model } // namespace ConfigService } // namespace Aws