/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace Rekognition { namespace Model { class StartStreamProcessorResult { public: AWS_REKOGNITION_API StartStreamProcessorResult(); AWS_REKOGNITION_API StartStreamProcessorResult(const Aws::AmazonWebServiceResult& result); AWS_REKOGNITION_API StartStreamProcessorResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

A unique identifier for the stream processing session.

*/ inline const Aws::String& GetSessionId() const{ return m_sessionId; } /** *

A unique identifier for the stream processing session.

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

A unique identifier for the stream processing session.

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

A unique identifier for the stream processing session.

*/ inline void SetSessionId(const char* value) { m_sessionId.assign(value); } /** *

A unique identifier for the stream processing session.

*/ inline StartStreamProcessorResult& WithSessionId(const Aws::String& value) { SetSessionId(value); return *this;} /** *

A unique identifier for the stream processing session.

*/ inline StartStreamProcessorResult& WithSessionId(Aws::String&& value) { SetSessionId(std::move(value)); return *this;} /** *

A unique identifier for the stream processing session.

*/ inline StartStreamProcessorResult& WithSessionId(const char* value) { SetSessionId(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 StartStreamProcessorResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline StartStreamProcessorResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline StartStreamProcessorResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_sessionId; Aws::String m_requestId; }; } // namespace Model } // namespace Rekognition } // namespace Aws