/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include namespace Aws { namespace ChimeSDKMeetings { namespace Model { /** */ class UpdateAttendeeCapabilitiesRequest : public ChimeSDKMeetingsRequest { public: AWS_CHIMESDKMEETINGS_API UpdateAttendeeCapabilitiesRequest(); // 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 "UpdateAttendeeCapabilities"; } 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 UpdateAttendeeCapabilitiesRequest& WithMeetingId(const Aws::String& value) { SetMeetingId(value); return *this;} /** *

The ID of the meeting associated with the update request.

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

The ID of the meeting associated with the update request.

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

The ID of the attendee associated with the update request.

*/ inline const Aws::String& GetAttendeeId() const{ return m_attendeeId; } /** *

The ID of the attendee associated with the update request.

*/ inline bool AttendeeIdHasBeenSet() const { return m_attendeeIdHasBeenSet; } /** *

The ID of the attendee associated with the update request.

*/ inline void SetAttendeeId(const Aws::String& value) { m_attendeeIdHasBeenSet = true; m_attendeeId = value; } /** *

The ID of the attendee associated with the update request.

*/ inline void SetAttendeeId(Aws::String&& value) { m_attendeeIdHasBeenSet = true; m_attendeeId = std::move(value); } /** *

The ID of the attendee associated with the update request.

*/ inline void SetAttendeeId(const char* value) { m_attendeeIdHasBeenSet = true; m_attendeeId.assign(value); } /** *

The ID of the attendee associated with the update request.

*/ inline UpdateAttendeeCapabilitiesRequest& WithAttendeeId(const Aws::String& value) { SetAttendeeId(value); return *this;} /** *

The ID of the attendee associated with the update request.

*/ inline UpdateAttendeeCapabilitiesRequest& WithAttendeeId(Aws::String&& value) { SetAttendeeId(std::move(value)); return *this;} /** *

The ID of the attendee associated with the update request.

*/ inline UpdateAttendeeCapabilitiesRequest& WithAttendeeId(const char* value) { SetAttendeeId(value); return *this;} /** *

The capabilities that you want to update.

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

The capabilities that you want to update.

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

The capabilities that you want to update.

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

The capabilities that you want to update.

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

The capabilities that you want to update.

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

The capabilities that you want to update.

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