/** * 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 { /** *

The values that indicate whether a pin is always required (YES), never * required (NO), or OPTIONAL.

  • If YES, Alexa will always ask for a * meeting pin.

  • If NO, Alexa will never ask for a meeting * pin.

  • If OPTIONAL, Alexa will ask if you have a meeting pin and * if the customer responds with yes, it will ask for the meeting pin.

  • *

See Also:

AWS * API Reference

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

The values that indicate whether the pin is always required.

*/ inline const RequirePin& GetRequirePin() const{ return m_requirePin; } /** *

The values that indicate whether the pin is always required.

*/ inline bool RequirePinHasBeenSet() const { return m_requirePinHasBeenSet; } /** *

The values that indicate whether the pin is always required.

*/ inline void SetRequirePin(const RequirePin& value) { m_requirePinHasBeenSet = true; m_requirePin = value; } /** *

The values that indicate whether the pin is always required.

*/ inline void SetRequirePin(RequirePin&& value) { m_requirePinHasBeenSet = true; m_requirePin = std::move(value); } /** *

The values that indicate whether the pin is always required.

*/ inline MeetingSetting& WithRequirePin(const RequirePin& value) { SetRequirePin(value); return *this;} /** *

The values that indicate whether the pin is always required.

*/ inline MeetingSetting& WithRequirePin(RequirePin&& value) { SetRequirePin(std::move(value)); return *this;} private: RequirePin m_requirePin; bool m_requirePinHasBeenSet = false; }; } // namespace Model } // namespace AlexaForBusiness } // namespace Aws