/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace ConfigService { namespace Model { class BatchGetResourceConfigResult { public: AWS_CONFIGSERVICE_API BatchGetResourceConfigResult(); AWS_CONFIGSERVICE_API BatchGetResourceConfigResult(const Aws::AmazonWebServiceResult& result); AWS_CONFIGSERVICE_API BatchGetResourceConfigResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

A list that contains the current configuration of one or more resources.

*/ inline const Aws::Vector& GetBaseConfigurationItems() const{ return m_baseConfigurationItems; } /** *

A list that contains the current configuration of one or more resources.

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

A list that contains the current configuration of one or more resources.

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

A list that contains the current configuration of one or more resources.

*/ inline BatchGetResourceConfigResult& WithBaseConfigurationItems(const Aws::Vector& value) { SetBaseConfigurationItems(value); return *this;} /** *

A list that contains the current configuration of one or more resources.

*/ inline BatchGetResourceConfigResult& WithBaseConfigurationItems(Aws::Vector&& value) { SetBaseConfigurationItems(std::move(value)); return *this;} /** *

A list that contains the current configuration of one or more resources.

*/ inline BatchGetResourceConfigResult& AddBaseConfigurationItems(const BaseConfigurationItem& value) { m_baseConfigurationItems.push_back(value); return *this; } /** *

A list that contains the current configuration of one or more resources.

*/ inline BatchGetResourceConfigResult& AddBaseConfigurationItems(BaseConfigurationItem&& value) { m_baseConfigurationItems.push_back(std::move(value)); return *this; } /** *

A list of resource keys that were not processed with the current response. * The unprocessesResourceKeys value is in the same form as ResourceKeys, so the * value can be directly provided to a subsequent BatchGetResourceConfig operation. * If there are no unprocessed resource keys, the response contains an empty * unprocessedResourceKeys list.

*/ inline const Aws::Vector& GetUnprocessedResourceKeys() const{ return m_unprocessedResourceKeys; } /** *

A list of resource keys that were not processed with the current response. * The unprocessesResourceKeys value is in the same form as ResourceKeys, so the * value can be directly provided to a subsequent BatchGetResourceConfig operation. * If there are no unprocessed resource keys, the response contains an empty * unprocessedResourceKeys list.

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

A list of resource keys that were not processed with the current response. * The unprocessesResourceKeys value is in the same form as ResourceKeys, so the * value can be directly provided to a subsequent BatchGetResourceConfig operation. * If there are no unprocessed resource keys, the response contains an empty * unprocessedResourceKeys list.

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

A list of resource keys that were not processed with the current response. * The unprocessesResourceKeys value is in the same form as ResourceKeys, so the * value can be directly provided to a subsequent BatchGetResourceConfig operation. * If there are no unprocessed resource keys, the response contains an empty * unprocessedResourceKeys list.

*/ inline BatchGetResourceConfigResult& WithUnprocessedResourceKeys(const Aws::Vector& value) { SetUnprocessedResourceKeys(value); return *this;} /** *

A list of resource keys that were not processed with the current response. * The unprocessesResourceKeys value is in the same form as ResourceKeys, so the * value can be directly provided to a subsequent BatchGetResourceConfig operation. * If there are no unprocessed resource keys, the response contains an empty * unprocessedResourceKeys list.

*/ inline BatchGetResourceConfigResult& WithUnprocessedResourceKeys(Aws::Vector&& value) { SetUnprocessedResourceKeys(std::move(value)); return *this;} /** *

A list of resource keys that were not processed with the current response. * The unprocessesResourceKeys value is in the same form as ResourceKeys, so the * value can be directly provided to a subsequent BatchGetResourceConfig operation. * If there are no unprocessed resource keys, the response contains an empty * unprocessedResourceKeys list.

*/ inline BatchGetResourceConfigResult& AddUnprocessedResourceKeys(const ResourceKey& value) { m_unprocessedResourceKeys.push_back(value); return *this; } /** *

A list of resource keys that were not processed with the current response. * The unprocessesResourceKeys value is in the same form as ResourceKeys, so the * value can be directly provided to a subsequent BatchGetResourceConfig operation. * If there are no unprocessed resource keys, the response contains an empty * unprocessedResourceKeys list.

*/ inline BatchGetResourceConfigResult& AddUnprocessedResourceKeys(ResourceKey&& value) { m_unprocessedResourceKeys.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 BatchGetResourceConfigResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline BatchGetResourceConfigResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline BatchGetResourceConfigResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::Vector m_baseConfigurationItems; Aws::Vector m_unprocessedResourceKeys; Aws::String m_requestId; }; } // namespace Model } // namespace ConfigService } // namespace Aws