/** * 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 DynamoDB { namespace Model { class AWS_DYNAMODB_API DescribeEndpointsResult { public: DescribeEndpointsResult(); DescribeEndpointsResult(const Aws::AmazonWebServiceResult& result); DescribeEndpointsResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

List of endpoints.

*/ inline const Aws::Vector& GetEndpoints() const{ return m_endpoints; } /** *

List of endpoints.

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

List of endpoints.

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

List of endpoints.

*/ inline DescribeEndpointsResult& WithEndpoints(const Aws::Vector& value) { SetEndpoints(value); return *this;} /** *

List of endpoints.

*/ inline DescribeEndpointsResult& WithEndpoints(Aws::Vector&& value) { SetEndpoints(std::move(value)); return *this;} /** *

List of endpoints.

*/ inline DescribeEndpointsResult& AddEndpoints(const Endpoint& value) { m_endpoints.push_back(value); return *this; } /** *

List of endpoints.

*/ inline DescribeEndpointsResult& AddEndpoints(Endpoint&& value) { m_endpoints.push_back(std::move(value)); return *this; } private: Aws::Vector m_endpoints; }; } // namespace Model } // namespace DynamoDB } // namespace Aws