This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-chime/include/aws/chime/model/UpdateRoomMembershipRequest.h

207 lines
5.8 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/chime/Chime_EXPORTS.h>
#include <aws/chime/ChimeRequest.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <aws/chime/model/RoomMembershipRole.h>
#include <utility>
namespace Aws
{
namespace Chime
{
namespace Model
{
/**
*/
class AWS_CHIME_API UpdateRoomMembershipRequest : public ChimeRequest
{
public:
UpdateRoomMembershipRequest();
// 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 "UpdateRoomMembership"; }
Aws::String SerializePayload() const override;
/**
* <p>The Amazon Chime account ID.</p>
*/
inline const Aws::String& GetAccountId() const{ return m_accountId; }
/**
* <p>The Amazon Chime account ID.</p>
*/
inline bool AccountIdHasBeenSet() const { return m_accountIdHasBeenSet; }
/**
* <p>The Amazon Chime account ID.</p>
*/
inline void SetAccountId(const Aws::String& value) { m_accountIdHasBeenSet = true; m_accountId = value; }
/**
* <p>The Amazon Chime account ID.</p>
*/
inline void SetAccountId(Aws::String&& value) { m_accountIdHasBeenSet = true; m_accountId = std::move(value); }
/**
* <p>The Amazon Chime account ID.</p>
*/
inline void SetAccountId(const char* value) { m_accountIdHasBeenSet = true; m_accountId.assign(value); }
/**
* <p>The Amazon Chime account ID.</p>
*/
inline UpdateRoomMembershipRequest& WithAccountId(const Aws::String& value) { SetAccountId(value); return *this;}
/**
* <p>The Amazon Chime account ID.</p>
*/
inline UpdateRoomMembershipRequest& WithAccountId(Aws::String&& value) { SetAccountId(std::move(value)); return *this;}
/**
* <p>The Amazon Chime account ID.</p>
*/
inline UpdateRoomMembershipRequest& WithAccountId(const char* value) { SetAccountId(value); return *this;}
/**
* <p>The room ID.</p>
*/
inline const Aws::String& GetRoomId() const{ return m_roomId; }
/**
* <p>The room ID.</p>
*/
inline bool RoomIdHasBeenSet() const { return m_roomIdHasBeenSet; }
/**
* <p>The room ID.</p>
*/
inline void SetRoomId(const Aws::String& value) { m_roomIdHasBeenSet = true; m_roomId = value; }
/**
* <p>The room ID.</p>
*/
inline void SetRoomId(Aws::String&& value) { m_roomIdHasBeenSet = true; m_roomId = std::move(value); }
/**
* <p>The room ID.</p>
*/
inline void SetRoomId(const char* value) { m_roomIdHasBeenSet = true; m_roomId.assign(value); }
/**
* <p>The room ID.</p>
*/
inline UpdateRoomMembershipRequest& WithRoomId(const Aws::String& value) { SetRoomId(value); return *this;}
/**
* <p>The room ID.</p>
*/
inline UpdateRoomMembershipRequest& WithRoomId(Aws::String&& value) { SetRoomId(std::move(value)); return *this;}
/**
* <p>The room ID.</p>
*/
inline UpdateRoomMembershipRequest& WithRoomId(const char* value) { SetRoomId(value); return *this;}
/**
* <p>The member ID.</p>
*/
inline const Aws::String& GetMemberId() const{ return m_memberId; }
/**
* <p>The member ID.</p>
*/
inline bool MemberIdHasBeenSet() const { return m_memberIdHasBeenSet; }
/**
* <p>The member ID.</p>
*/
inline void SetMemberId(const Aws::String& value) { m_memberIdHasBeenSet = true; m_memberId = value; }
/**
* <p>The member ID.</p>
*/
inline void SetMemberId(Aws::String&& value) { m_memberIdHasBeenSet = true; m_memberId = std::move(value); }
/**
* <p>The member ID.</p>
*/
inline void SetMemberId(const char* value) { m_memberIdHasBeenSet = true; m_memberId.assign(value); }
/**
* <p>The member ID.</p>
*/
inline UpdateRoomMembershipRequest& WithMemberId(const Aws::String& value) { SetMemberId(value); return *this;}
/**
* <p>The member ID.</p>
*/
inline UpdateRoomMembershipRequest& WithMemberId(Aws::String&& value) { SetMemberId(std::move(value)); return *this;}
/**
* <p>The member ID.</p>
*/
inline UpdateRoomMembershipRequest& WithMemberId(const char* value) { SetMemberId(value); return *this;}
/**
* <p>The role of the member.</p>
*/
inline const RoomMembershipRole& GetRole() const{ return m_role; }
/**
* <p>The role of the member.</p>
*/
inline bool RoleHasBeenSet() const { return m_roleHasBeenSet; }
/**
* <p>The role of the member.</p>
*/
inline void SetRole(const RoomMembershipRole& value) { m_roleHasBeenSet = true; m_role = value; }
/**
* <p>The role of the member.</p>
*/
inline void SetRole(RoomMembershipRole&& value) { m_roleHasBeenSet = true; m_role = std::move(value); }
/**
* <p>The role of the member.</p>
*/
inline UpdateRoomMembershipRequest& WithRole(const RoomMembershipRole& value) { SetRole(value); return *this;}
/**
* <p>The role of the member.</p>
*/
inline UpdateRoomMembershipRequest& WithRole(RoomMembershipRole&& value) { SetRole(std::move(value)); return *this;}
private:
Aws::String m_accountId;
bool m_accountIdHasBeenSet;
Aws::String m_roomId;
bool m_roomIdHasBeenSet;
Aws::String m_memberId;
bool m_memberIdHasBeenSet;
RoomMembershipRole m_role;
bool m_roleHasBeenSet;
};
} // namespace Model
} // namespace Chime
} // namespace Aws