/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace ChimeSDKMeetings { namespace Model { class CreateMeetingWithAttendeesResult { public: AWS_CHIMESDKMEETINGS_API CreateMeetingWithAttendeesResult(); AWS_CHIMESDKMEETINGS_API CreateMeetingWithAttendeesResult(const Aws::AmazonWebServiceResult& result); AWS_CHIMESDKMEETINGS_API CreateMeetingWithAttendeesResult& 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 CreateMeetingWithAttendeesResult& WithMeeting(const Meeting& value) { SetMeeting(value); return *this;} /** *

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

*/ inline CreateMeetingWithAttendeesResult& WithMeeting(Meeting&& value) { SetMeeting(std::move(value)); return *this;} /** *

The attendee information, including attendees' IDs and join tokens.

*/ inline const Aws::Vector& GetAttendees() const{ return m_attendees; } /** *

The attendee information, including attendees' IDs and join tokens.

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

The attendee information, including attendees' IDs and join tokens.

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

The attendee information, including attendees' IDs and join tokens.

*/ inline CreateMeetingWithAttendeesResult& WithAttendees(const Aws::Vector& value) { SetAttendees(value); return *this;} /** *

The attendee information, including attendees' IDs and join tokens.

*/ inline CreateMeetingWithAttendeesResult& WithAttendees(Aws::Vector&& value) { SetAttendees(std::move(value)); return *this;} /** *

The attendee information, including attendees' IDs and join tokens.

*/ inline CreateMeetingWithAttendeesResult& AddAttendees(const Attendee& value) { m_attendees.push_back(value); return *this; } /** *

The attendee information, including attendees' IDs and join tokens.

*/ inline CreateMeetingWithAttendeesResult& AddAttendees(Attendee&& value) { m_attendees.push_back(std::move(value)); return *this; } /** *

If the action fails for one or more of the attendees in the request, a list * of the attendees is returned, along with error codes and error messages.

*/ inline const Aws::Vector& GetErrors() const{ return m_errors; } /** *

If the action fails for one or more of the attendees in the request, a list * of the attendees is returned, along with error codes and error messages.

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

If the action fails for one or more of the attendees in the request, a list * of the attendees is returned, along with error codes and error messages.

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

If the action fails for one or more of the attendees in the request, a list * of the attendees is returned, along with error codes and error messages.

*/ inline CreateMeetingWithAttendeesResult& WithErrors(const Aws::Vector& value) { SetErrors(value); return *this;} /** *

If the action fails for one or more of the attendees in the request, a list * of the attendees is returned, along with error codes and error messages.

*/ inline CreateMeetingWithAttendeesResult& WithErrors(Aws::Vector&& value) { SetErrors(std::move(value)); return *this;} /** *

If the action fails for one or more of the attendees in the request, a list * of the attendees is returned, along with error codes and error messages.

*/ inline CreateMeetingWithAttendeesResult& AddErrors(const CreateAttendeeError& value) { m_errors.push_back(value); return *this; } /** *

If the action fails for one or more of the attendees in the request, a list * of the attendees is returned, along with error codes and error messages.

*/ inline CreateMeetingWithAttendeesResult& AddErrors(CreateAttendeeError&& value) { m_errors.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 CreateMeetingWithAttendeesResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline CreateMeetingWithAttendeesResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline CreateMeetingWithAttendeesResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Meeting m_meeting; Aws::Vector m_attendees; Aws::Vector m_errors; Aws::String m_requestId; }; } // namespace Model } // namespace ChimeSDKMeetings } // namespace Aws