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