/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include #include namespace Aws { namespace ChimeSDKMeetings { namespace Model { /** */ class BatchCreateAttendeeRequest : public ChimeSDKMeetingsRequest { public: AWS_CHIMESDKMEETINGS_API BatchCreateAttendeeRequest(); // Service request name is the Operation name which will send this request out, // each operation should has unique request name, so that we can get operation's name from this request. // Note: this is not true for response, multiple operations may have the same response name, // so we can not get operation's name from response. inline virtual const char* GetServiceRequestName() const override { return "BatchCreateAttendee"; } AWS_CHIMESDKMEETINGS_API Aws::String SerializePayload() const override; /** *

The Amazon Chime SDK ID of the meeting to which you're adding attendees.

*/ inline const Aws::String& GetMeetingId() const{ return m_meetingId; } /** *

The Amazon Chime SDK ID of the meeting to which you're adding attendees.

*/ inline bool MeetingIdHasBeenSet() const { return m_meetingIdHasBeenSet; } /** *

The Amazon Chime SDK ID of the meeting to which you're adding attendees.

*/ inline void SetMeetingId(const Aws::String& value) { m_meetingIdHasBeenSet = true; m_meetingId = value; } /** *

The Amazon Chime SDK ID of the meeting to which you're adding attendees.

*/ inline void SetMeetingId(Aws::String&& value) { m_meetingIdHasBeenSet = true; m_meetingId = std::move(value); } /** *

The Amazon Chime SDK ID of the meeting to which you're adding attendees.

*/ inline void SetMeetingId(const char* value) { m_meetingIdHasBeenSet = true; m_meetingId.assign(value); } /** *

The Amazon Chime SDK ID of the meeting to which you're adding attendees.

*/ inline BatchCreateAttendeeRequest& WithMeetingId(const Aws::String& value) { SetMeetingId(value); return *this;} /** *

The Amazon Chime SDK ID of the meeting to which you're adding attendees.

*/ inline BatchCreateAttendeeRequest& WithMeetingId(Aws::String&& value) { SetMeetingId(std::move(value)); return *this;} /** *

The Amazon Chime SDK ID of the meeting to which you're adding attendees.

*/ inline BatchCreateAttendeeRequest& WithMeetingId(const char* value) { SetMeetingId(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 bool AttendeesHasBeenSet() const { return m_attendeesHasBeenSet; } /** *

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

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

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

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

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

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

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

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

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

*/ inline BatchCreateAttendeeRequest& AddAttendees(const CreateAttendeeRequestItem& value) { m_attendeesHasBeenSet = true; m_attendees.push_back(value); return *this; } /** *

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

*/ inline BatchCreateAttendeeRequest& AddAttendees(CreateAttendeeRequestItem&& value) { m_attendeesHasBeenSet = true; m_attendees.push_back(std::move(value)); return *this; } private: Aws::String m_meetingId; bool m_meetingIdHasBeenSet = false; Aws::Vector m_attendees; bool m_attendeesHasBeenSet = false; }; } // namespace Model } // namespace ChimeSDKMeetings } // namespace Aws