/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace AlexaForBusiness { namespace Model { /** *

A room with attributes.

See Also:

AWS * API Reference

*/ class Room { public: AWS_ALEXAFORBUSINESS_API Room(); AWS_ALEXAFORBUSINESS_API Room(Aws::Utils::Json::JsonView jsonValue); AWS_ALEXAFORBUSINESS_API Room& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_ALEXAFORBUSINESS_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

The ARN of a room.

*/ inline const Aws::String& GetRoomArn() const{ return m_roomArn; } /** *

The ARN of a room.

*/ inline bool RoomArnHasBeenSet() const { return m_roomArnHasBeenSet; } /** *

The ARN of a room.

*/ inline void SetRoomArn(const Aws::String& value) { m_roomArnHasBeenSet = true; m_roomArn = value; } /** *

The ARN of a room.

*/ inline void SetRoomArn(Aws::String&& value) { m_roomArnHasBeenSet = true; m_roomArn = std::move(value); } /** *

The ARN of a room.

*/ inline void SetRoomArn(const char* value) { m_roomArnHasBeenSet = true; m_roomArn.assign(value); } /** *

The ARN of a room.

*/ inline Room& WithRoomArn(const Aws::String& value) { SetRoomArn(value); return *this;} /** *

The ARN of a room.

*/ inline Room& WithRoomArn(Aws::String&& value) { SetRoomArn(std::move(value)); return *this;} /** *

The ARN of a room.

*/ inline Room& WithRoomArn(const char* value) { SetRoomArn(value); return *this;} /** *

The name of a room.

*/ inline const Aws::String& GetRoomName() const{ return m_roomName; } /** *

The name of a room.

*/ inline bool RoomNameHasBeenSet() const { return m_roomNameHasBeenSet; } /** *

The name of a room.

*/ inline void SetRoomName(const Aws::String& value) { m_roomNameHasBeenSet = true; m_roomName = value; } /** *

The name of a room.

*/ inline void SetRoomName(Aws::String&& value) { m_roomNameHasBeenSet = true; m_roomName = std::move(value); } /** *

The name of a room.

*/ inline void SetRoomName(const char* value) { m_roomNameHasBeenSet = true; m_roomName.assign(value); } /** *

The name of a room.

*/ inline Room& WithRoomName(const Aws::String& value) { SetRoomName(value); return *this;} /** *

The name of a room.

*/ inline Room& WithRoomName(Aws::String&& value) { SetRoomName(std::move(value)); return *this;} /** *

The name of a room.

*/ inline Room& WithRoomName(const char* value) { SetRoomName(value); return *this;} /** *

The description of a room.

*/ inline const Aws::String& GetDescription() const{ return m_description; } /** *

The description of a room.

*/ inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; } /** *

The description of a room.

*/ inline void SetDescription(const Aws::String& value) { m_descriptionHasBeenSet = true; m_description = value; } /** *

The description of a room.

*/ inline void SetDescription(Aws::String&& value) { m_descriptionHasBeenSet = true; m_description = std::move(value); } /** *

The description of a room.

*/ inline void SetDescription(const char* value) { m_descriptionHasBeenSet = true; m_description.assign(value); } /** *

The description of a room.

*/ inline Room& WithDescription(const Aws::String& value) { SetDescription(value); return *this;} /** *

The description of a room.

*/ inline Room& WithDescription(Aws::String&& value) { SetDescription(std::move(value)); return *this;} /** *

The description of a room.

*/ inline Room& WithDescription(const char* value) { SetDescription(value); return *this;} /** *

The provider calendar ARN of a room.

*/ inline const Aws::String& GetProviderCalendarId() const{ return m_providerCalendarId; } /** *

The provider calendar ARN of a room.

*/ inline bool ProviderCalendarIdHasBeenSet() const { return m_providerCalendarIdHasBeenSet; } /** *

The provider calendar ARN of a room.

*/ inline void SetProviderCalendarId(const Aws::String& value) { m_providerCalendarIdHasBeenSet = true; m_providerCalendarId = value; } /** *

The provider calendar ARN of a room.

*/ inline void SetProviderCalendarId(Aws::String&& value) { m_providerCalendarIdHasBeenSet = true; m_providerCalendarId = std::move(value); } /** *

The provider calendar ARN of a room.

*/ inline void SetProviderCalendarId(const char* value) { m_providerCalendarIdHasBeenSet = true; m_providerCalendarId.assign(value); } /** *

The provider calendar ARN of a room.

*/ inline Room& WithProviderCalendarId(const Aws::String& value) { SetProviderCalendarId(value); return *this;} /** *

The provider calendar ARN of a room.

*/ inline Room& WithProviderCalendarId(Aws::String&& value) { SetProviderCalendarId(std::move(value)); return *this;} /** *

The provider calendar ARN of a room.

*/ inline Room& WithProviderCalendarId(const char* value) { SetProviderCalendarId(value); return *this;} /** *

The profile ARN of a room.

*/ inline const Aws::String& GetProfileArn() const{ return m_profileArn; } /** *

The profile ARN of a room.

*/ inline bool ProfileArnHasBeenSet() const { return m_profileArnHasBeenSet; } /** *

The profile ARN of a room.

*/ inline void SetProfileArn(const Aws::String& value) { m_profileArnHasBeenSet = true; m_profileArn = value; } /** *

The profile ARN of a room.

*/ inline void SetProfileArn(Aws::String&& value) { m_profileArnHasBeenSet = true; m_profileArn = std::move(value); } /** *

The profile ARN of a room.

*/ inline void SetProfileArn(const char* value) { m_profileArnHasBeenSet = true; m_profileArn.assign(value); } /** *

The profile ARN of a room.

*/ inline Room& WithProfileArn(const Aws::String& value) { SetProfileArn(value); return *this;} /** *

The profile ARN of a room.

*/ inline Room& WithProfileArn(Aws::String&& value) { SetProfileArn(std::move(value)); return *this;} /** *

The profile ARN of a room.

*/ inline Room& WithProfileArn(const char* value) { SetProfileArn(value); return *this;} private: Aws::String m_roomArn; bool m_roomArnHasBeenSet = false; Aws::String m_roomName; bool m_roomNameHasBeenSet = false; Aws::String m_description; bool m_descriptionHasBeenSet = false; Aws::String m_providerCalendarId; bool m_providerCalendarIdHasBeenSet = false; Aws::String m_profileArn; bool m_profileArnHasBeenSet = false; }; } // namespace Model } // namespace AlexaForBusiness } // namespace Aws