/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { namespace Chime { namespace Model { /** */ class GetRoomRequest : public ChimeRequest { public: AWS_CHIME_API GetRoomRequest(); // 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 "GetRoom"; } AWS_CHIME_API Aws::String SerializePayload() const override; /** *

The Amazon Chime account ID.

*/ inline const Aws::String& GetAccountId() const{ return m_accountId; } /** *

The Amazon Chime account ID.

*/ inline bool AccountIdHasBeenSet() const { return m_accountIdHasBeenSet; } /** *

The Amazon Chime account ID.

*/ inline void SetAccountId(const Aws::String& value) { m_accountIdHasBeenSet = true; m_accountId = value; } /** *

The Amazon Chime account ID.

*/ inline void SetAccountId(Aws::String&& value) { m_accountIdHasBeenSet = true; m_accountId = std::move(value); } /** *

The Amazon Chime account ID.

*/ inline void SetAccountId(const char* value) { m_accountIdHasBeenSet = true; m_accountId.assign(value); } /** *

The Amazon Chime account ID.

*/ inline GetRoomRequest& WithAccountId(const Aws::String& value) { SetAccountId(value); return *this;} /** *

The Amazon Chime account ID.

*/ inline GetRoomRequest& WithAccountId(Aws::String&& value) { SetAccountId(std::move(value)); return *this;} /** *

The Amazon Chime account ID.

*/ inline GetRoomRequest& WithAccountId(const char* value) { SetAccountId(value); return *this;} /** *

The room ID.

*/ inline const Aws::String& GetRoomId() const{ return m_roomId; } /** *

The room ID.

*/ inline bool RoomIdHasBeenSet() const { return m_roomIdHasBeenSet; } /** *

The room ID.

*/ inline void SetRoomId(const Aws::String& value) { m_roomIdHasBeenSet = true; m_roomId = value; } /** *

The room ID.

*/ inline void SetRoomId(Aws::String&& value) { m_roomIdHasBeenSet = true; m_roomId = std::move(value); } /** *

The room ID.

*/ inline void SetRoomId(const char* value) { m_roomIdHasBeenSet = true; m_roomId.assign(value); } /** *

The room ID.

*/ inline GetRoomRequest& WithRoomId(const Aws::String& value) { SetRoomId(value); return *this;} /** *

The room ID.

*/ inline GetRoomRequest& WithRoomId(Aws::String&& value) { SetRoomId(std::move(value)); return *this;} /** *

The room ID.

*/ inline GetRoomRequest& WithRoomId(const char* value) { SetRoomId(value); return *this;} private: Aws::String m_accountId; bool m_accountIdHasBeenSet = false; Aws::String m_roomId; bool m_roomIdHasBeenSet = false; }; } // namespace Model } // namespace Chime } // namespace Aws