118 lines
3.2 KiB
C++
118 lines
3.2 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#pragma once
|
|
#include <aws/mediaconvert/MediaConvert_EXPORTS.h>
|
|
#include <aws/core/utils/memory/stl/AWSVector.h>
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|
#include <aws/mediaconvert/model/Endpoint.h>
|
|
#include <utility>
|
|
|
|
namespace Aws
|
|
{
|
|
template<typename RESULT_TYPE>
|
|
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<Aws::Utils::Json::JsonValue>& result);
|
|
DescribeEndpointsResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|
|
|
|
|
/**
|
|
* List of endpoints
|
|
*/
|
|
inline const Aws::Vector<Endpoint>& GetEndpoints() const{ return m_endpoints; }
|
|
|
|
/**
|
|
* List of endpoints
|
|
*/
|
|
inline void SetEndpoints(const Aws::Vector<Endpoint>& value) { m_endpoints = value; }
|
|
|
|
/**
|
|
* List of endpoints
|
|
*/
|
|
inline void SetEndpoints(Aws::Vector<Endpoint>&& value) { m_endpoints = std::move(value); }
|
|
|
|
/**
|
|
* List of endpoints
|
|
*/
|
|
inline DescribeEndpointsResult& WithEndpoints(const Aws::Vector<Endpoint>& value) { SetEndpoints(value); return *this;}
|
|
|
|
/**
|
|
* List of endpoints
|
|
*/
|
|
inline DescribeEndpointsResult& WithEndpoints(Aws::Vector<Endpoint>&& 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<Endpoint> m_endpoints;
|
|
|
|
Aws::String m_nextToken;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace MediaConvert
|
|
} // namespace Aws
|