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

An array of descriptions for the specified entities.

*/ inline const Aws::Vector& GetDescriptions() const{ return m_descriptions; } /** *

An array of descriptions for the specified entities.

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

An array of descriptions for the specified entities.

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

An array of descriptions for the specified entities.

*/ inline GetEntitiesResult& WithDescriptions(const Aws::Vector& value) { SetDescriptions(value); return *this;} /** *

An array of descriptions for the specified entities.

*/ inline GetEntitiesResult& WithDescriptions(Aws::Vector&& value) { SetDescriptions(std::move(value)); return *this;} /** *

An array of descriptions for the specified entities.

*/ inline GetEntitiesResult& AddDescriptions(const EntityDescription& value) { m_descriptions.push_back(value); return *this; } /** *

An array of descriptions for the specified entities.

*/ inline GetEntitiesResult& AddDescriptions(EntityDescription&& value) { m_descriptions.push_back(std::move(value)); return *this; } private: Aws::Vector m_descriptions; }; } // namespace Model } // namespace IoTThingsGraph } // namespace Aws