/** * 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 Pinpoint { namespace Model { class AWS_PINPOINT_API GetEventStreamResult { public: GetEventStreamResult(); GetEventStreamResult(const Aws::AmazonWebServiceResult& result); GetEventStreamResult& operator=(const Aws::AmazonWebServiceResult& result); inline const EventStream& GetEventStream() const{ return m_eventStream; } inline void SetEventStream(const EventStream& value) { m_eventStream = value; } inline void SetEventStream(EventStream&& value) { m_eventStream = std::move(value); } inline GetEventStreamResult& WithEventStream(const EventStream& value) { SetEventStream(value); return *this;} inline GetEventStreamResult& WithEventStream(EventStream&& value) { SetEventStream(std::move(value)); return *this;} private: EventStream m_eventStream; }; } // namespace Model } // namespace Pinpoint } // namespace Aws