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

The meeting information, including the meeting ID and * MediaPlacement.

*/ inline const Meeting& GetMeeting() const{ return m_meeting; } /** *

The meeting information, including the meeting ID and * MediaPlacement.

*/ inline void SetMeeting(const Meeting& value) { m_meeting = value; } /** *

The meeting information, including the meeting ID and * MediaPlacement.

*/ inline void SetMeeting(Meeting&& value) { m_meeting = std::move(value); } /** *

The meeting information, including the meeting ID and * MediaPlacement.

*/ inline CreateMeetingResult& WithMeeting(const Meeting& value) { SetMeeting(value); return *this;} /** *

The meeting information, including the meeting ID and * MediaPlacement.

*/ inline CreateMeetingResult& WithMeeting(Meeting&& value) { SetMeeting(std::move(value)); return *this;} private: Meeting m_meeting; }; } // namespace Model } // namespace Chime } // namespace Aws