/** * 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 { class AWS_CONFIGSERVICE_API BatchGetResourceConfigResult { public: BatchGetResourceConfigResult(); BatchGetResourceConfigResult(const Aws::AmazonWebServiceResult& result); 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; } private: Aws::Vector m_baseConfigurationItems; Aws::Vector m_unprocessedResourceKeys; }; } // namespace Model } // namespace ConfigService } // namespace Aws