/** * 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 MediaConvert { namespace Model { class AWS_MEDIACONVERT_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; } /** * Use this string to request the next batch of endpoints. */ inline const Aws::String& GetNextToken() const{ return m_nextToken; } /** * Use this string to request the next batch of endpoints. */ inline void SetNextToken(const Aws::String& value) { m_nextToken = value; } /** * Use this string to request the next batch of endpoints. */ inline void SetNextToken(Aws::String&& value) { m_nextToken = std::move(value); } /** * Use this string to request the next batch of endpoints. */ inline void SetNextToken(const char* value) { m_nextToken.assign(value); } /** * Use this string to request the next batch of endpoints. */ inline DescribeEndpointsResult& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;} /** * Use this string to request the next batch of endpoints. */ inline DescribeEndpointsResult& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;} /** * Use this string to request the next batch of endpoints. */ inline DescribeEndpointsResult& WithNextToken(const char* value) { SetNextToken(value); return *this;} private: Aws::Vector m_endpoints; Aws::String m_nextToken; }; } // namespace Model } // namespace MediaConvert } // namespace Aws