/** * 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 { namespace ChimeSDKMeetings { namespace Model { /** */ class BatchUpdateAttendeeCapabilitiesExceptRequest : public ChimeSDKMeetingsRequest { public: AWS_CHIMESDKMEETINGS_API BatchUpdateAttendeeCapabilitiesExceptRequest(); // 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 "BatchUpdateAttendeeCapabilitiesExcept"; } AWS_CHIMESDKMEETINGS_API Aws::String SerializePayload() const override; /** *

The ID of the meeting associated with the update request.

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

The ID of the meeting associated with the update request.

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

The ID of the meeting associated with the update request.

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

The ID of the meeting associated with the update request.

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

The ID of the meeting associated with the update request.

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

The ID of the meeting associated with the update request.

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

The ID of the meeting associated with the update request.

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

The ID of the meeting associated with the update request.

*/ inline BatchUpdateAttendeeCapabilitiesExceptRequest& WithMeetingId(const char* value) { SetMeetingId(value); return *this;} /** *

The AttendeeIDs that you want to exclude from one or more * capabilities.

*/ inline const Aws::Vector& GetExcludedAttendeeIds() const{ return m_excludedAttendeeIds; } /** *

The AttendeeIDs that you want to exclude from one or more * capabilities.

*/ inline bool ExcludedAttendeeIdsHasBeenSet() const { return m_excludedAttendeeIdsHasBeenSet; } /** *

The AttendeeIDs that you want to exclude from one or more * capabilities.

*/ inline void SetExcludedAttendeeIds(const Aws::Vector& value) { m_excludedAttendeeIdsHasBeenSet = true; m_excludedAttendeeIds = value; } /** *

The AttendeeIDs that you want to exclude from one or more * capabilities.

*/ inline void SetExcludedAttendeeIds(Aws::Vector&& value) { m_excludedAttendeeIdsHasBeenSet = true; m_excludedAttendeeIds = std::move(value); } /** *

The AttendeeIDs that you want to exclude from one or more * capabilities.

*/ inline BatchUpdateAttendeeCapabilitiesExceptRequest& WithExcludedAttendeeIds(const Aws::Vector& value) { SetExcludedAttendeeIds(value); return *this;} /** *

The AttendeeIDs that you want to exclude from one or more * capabilities.

*/ inline BatchUpdateAttendeeCapabilitiesExceptRequest& WithExcludedAttendeeIds(Aws::Vector&& value) { SetExcludedAttendeeIds(std::move(value)); return *this;} /** *

The AttendeeIDs that you want to exclude from one or more * capabilities.

*/ inline BatchUpdateAttendeeCapabilitiesExceptRequest& AddExcludedAttendeeIds(const AttendeeIdItem& value) { m_excludedAttendeeIdsHasBeenSet = true; m_excludedAttendeeIds.push_back(value); return *this; } /** *

The AttendeeIDs that you want to exclude from one or more * capabilities.

*/ inline BatchUpdateAttendeeCapabilitiesExceptRequest& AddExcludedAttendeeIds(AttendeeIdItem&& value) { m_excludedAttendeeIdsHasBeenSet = true; m_excludedAttendeeIds.push_back(std::move(value)); return *this; } /** *

The capabilities (audio, video, or * content) that you want to update.

*/ inline const AttendeeCapabilities& GetCapabilities() const{ return m_capabilities; } /** *

The capabilities (audio, video, or * content) that you want to update.

*/ inline bool CapabilitiesHasBeenSet() const { return m_capabilitiesHasBeenSet; } /** *

The capabilities (audio, video, or * content) that you want to update.

*/ inline void SetCapabilities(const AttendeeCapabilities& value) { m_capabilitiesHasBeenSet = true; m_capabilities = value; } /** *

The capabilities (audio, video, or * content) that you want to update.

*/ inline void SetCapabilities(AttendeeCapabilities&& value) { m_capabilitiesHasBeenSet = true; m_capabilities = std::move(value); } /** *

The capabilities (audio, video, or * content) that you want to update.

*/ inline BatchUpdateAttendeeCapabilitiesExceptRequest& WithCapabilities(const AttendeeCapabilities& value) { SetCapabilities(value); return *this;} /** *

The capabilities (audio, video, or * content) that you want to update.

*/ inline BatchUpdateAttendeeCapabilitiesExceptRequest& WithCapabilities(AttendeeCapabilities&& value) { SetCapabilities(std::move(value)); return *this;} private: Aws::String m_meetingId; bool m_meetingIdHasBeenSet = false; Aws::Vector m_excludedAttendeeIds; bool m_excludedAttendeeIdsHasBeenSet = false; AttendeeCapabilities m_capabilities; bool m_capabilitiesHasBeenSet = false; }; } // namespace Model } // namespace ChimeSDKMeetings } // namespace Aws