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

If the response is truncated, Amazon Rekognition Video returns this token * that you can use in the subsequent request to retrieve the next set of stream * processors.

*/ inline const Aws::String& GetNextToken() const{ return m_nextToken; } /** *

If the response is truncated, Amazon Rekognition Video returns this token * that you can use in the subsequent request to retrieve the next set of stream * processors.

*/ inline void SetNextToken(const Aws::String& value) { m_nextToken = value; } /** *

If the response is truncated, Amazon Rekognition Video returns this token * that you can use in the subsequent request to retrieve the next set of stream * processors.

*/ inline void SetNextToken(Aws::String&& value) { m_nextToken = std::move(value); } /** *

If the response is truncated, Amazon Rekognition Video returns this token * that you can use in the subsequent request to retrieve the next set of stream * processors.

*/ inline void SetNextToken(const char* value) { m_nextToken.assign(value); } /** *

If the response is truncated, Amazon Rekognition Video returns this token * that you can use in the subsequent request to retrieve the next set of stream * processors.

*/ inline ListStreamProcessorsResult& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;} /** *

If the response is truncated, Amazon Rekognition Video returns this token * that you can use in the subsequent request to retrieve the next set of stream * processors.

*/ inline ListStreamProcessorsResult& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;} /** *

If the response is truncated, Amazon Rekognition Video returns this token * that you can use in the subsequent request to retrieve the next set of stream * processors.

*/ inline ListStreamProcessorsResult& WithNextToken(const char* value) { SetNextToken(value); return *this;} /** *

List of stream processors that you have created.

*/ inline const Aws::Vector& GetStreamProcessors() const{ return m_streamProcessors; } /** *

List of stream processors that you have created.

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

List of stream processors that you have created.

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

List of stream processors that you have created.

*/ inline ListStreamProcessorsResult& WithStreamProcessors(const Aws::Vector& value) { SetStreamProcessors(value); return *this;} /** *

List of stream processors that you have created.

*/ inline ListStreamProcessorsResult& WithStreamProcessors(Aws::Vector&& value) { SetStreamProcessors(std::move(value)); return *this;} /** *

List of stream processors that you have created.

*/ inline ListStreamProcessorsResult& AddStreamProcessors(const StreamProcessor& value) { m_streamProcessors.push_back(value); return *this; } /** *

List of stream processors that you have created.

*/ inline ListStreamProcessorsResult& AddStreamProcessors(StreamProcessor&& value) { m_streamProcessors.push_back(std::move(value)); return *this; } inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline ListStreamProcessorsResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline ListStreamProcessorsResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline ListStreamProcessorsResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_nextToken; Aws::Vector m_streamProcessors; Aws::String m_requestId; }; } // namespace Model } // namespace Rekognition } // namespace Aws