132 lines
4.1 KiB
C++
132 lines
4.1 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#pragma once
|
|
#include <aws/polly/Polly_EXPORTS.h>
|
|
#include <aws/core/utils/memory/stl/AWSVector.h>
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|
#include <aws/polly/model/Voice.h>
|
|
#include <utility>
|
|
|
|
namespace Aws
|
|
{
|
|
template<typename RESULT_TYPE>
|
|
class AmazonWebServiceResult;
|
|
|
|
namespace Utils
|
|
{
|
|
namespace Json
|
|
{
|
|
class JsonValue;
|
|
} // namespace Json
|
|
} // namespace Utils
|
|
namespace Polly
|
|
{
|
|
namespace Model
|
|
{
|
|
class AWS_POLLY_API DescribeVoicesResult
|
|
{
|
|
public:
|
|
DescribeVoicesResult();
|
|
DescribeVoicesResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|
DescribeVoicesResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|
|
|
|
|
/**
|
|
* <p>A list of voices with their properties.</p>
|
|
*/
|
|
inline const Aws::Vector<Voice>& GetVoices() const{ return m_voices; }
|
|
|
|
/**
|
|
* <p>A list of voices with their properties.</p>
|
|
*/
|
|
inline void SetVoices(const Aws::Vector<Voice>& value) { m_voices = value; }
|
|
|
|
/**
|
|
* <p>A list of voices with their properties.</p>
|
|
*/
|
|
inline void SetVoices(Aws::Vector<Voice>&& value) { m_voices = std::move(value); }
|
|
|
|
/**
|
|
* <p>A list of voices with their properties.</p>
|
|
*/
|
|
inline DescribeVoicesResult& WithVoices(const Aws::Vector<Voice>& value) { SetVoices(value); return *this;}
|
|
|
|
/**
|
|
* <p>A list of voices with their properties.</p>
|
|
*/
|
|
inline DescribeVoicesResult& WithVoices(Aws::Vector<Voice>&& value) { SetVoices(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>A list of voices with their properties.</p>
|
|
*/
|
|
inline DescribeVoicesResult& AddVoices(const Voice& value) { m_voices.push_back(value); return *this; }
|
|
|
|
/**
|
|
* <p>A list of voices with their properties.</p>
|
|
*/
|
|
inline DescribeVoicesResult& AddVoices(Voice&& value) { m_voices.push_back(std::move(value)); return *this; }
|
|
|
|
|
|
/**
|
|
* <p>The pagination token to use in the next request to continue the listing of
|
|
* voices. <code>NextToken</code> is returned only if the response is
|
|
* truncated.</p>
|
|
*/
|
|
inline const Aws::String& GetNextToken() const{ return m_nextToken; }
|
|
|
|
/**
|
|
* <p>The pagination token to use in the next request to continue the listing of
|
|
* voices. <code>NextToken</code> is returned only if the response is
|
|
* truncated.</p>
|
|
*/
|
|
inline void SetNextToken(const Aws::String& value) { m_nextToken = value; }
|
|
|
|
/**
|
|
* <p>The pagination token to use in the next request to continue the listing of
|
|
* voices. <code>NextToken</code> is returned only if the response is
|
|
* truncated.</p>
|
|
*/
|
|
inline void SetNextToken(Aws::String&& value) { m_nextToken = std::move(value); }
|
|
|
|
/**
|
|
* <p>The pagination token to use in the next request to continue the listing of
|
|
* voices. <code>NextToken</code> is returned only if the response is
|
|
* truncated.</p>
|
|
*/
|
|
inline void SetNextToken(const char* value) { m_nextToken.assign(value); }
|
|
|
|
/**
|
|
* <p>The pagination token to use in the next request to continue the listing of
|
|
* voices. <code>NextToken</code> is returned only if the response is
|
|
* truncated.</p>
|
|
*/
|
|
inline DescribeVoicesResult& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;}
|
|
|
|
/**
|
|
* <p>The pagination token to use in the next request to continue the listing of
|
|
* voices. <code>NextToken</code> is returned only if the response is
|
|
* truncated.</p>
|
|
*/
|
|
inline DescribeVoicesResult& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The pagination token to use in the next request to continue the listing of
|
|
* voices. <code>NextToken</code> is returned only if the response is
|
|
* truncated.</p>
|
|
*/
|
|
inline DescribeVoicesResult& WithNextToken(const char* value) { SetNextToken(value); return *this;}
|
|
|
|
private:
|
|
|
|
Aws::Vector<Voice> m_voices;
|
|
|
|
Aws::String m_nextToken;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace Polly
|
|
} // namespace Aws
|