/** * 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 Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace ChimeSDKVoice { namespace Model { /** *

The Alexa Skill configuration of a SIP media application.

See * Also:

AWS * API Reference

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

The status of the Alexa Skill configuration.

*/ inline const AlexaSkillStatus& GetAlexaSkillStatus() const{ return m_alexaSkillStatus; } /** *

The status of the Alexa Skill configuration.

*/ inline bool AlexaSkillStatusHasBeenSet() const { return m_alexaSkillStatusHasBeenSet; } /** *

The status of the Alexa Skill configuration.

*/ inline void SetAlexaSkillStatus(const AlexaSkillStatus& value) { m_alexaSkillStatusHasBeenSet = true; m_alexaSkillStatus = value; } /** *

The status of the Alexa Skill configuration.

*/ inline void SetAlexaSkillStatus(AlexaSkillStatus&& value) { m_alexaSkillStatusHasBeenSet = true; m_alexaSkillStatus = std::move(value); } /** *

The status of the Alexa Skill configuration.

*/ inline SipMediaApplicationAlexaSkillConfiguration& WithAlexaSkillStatus(const AlexaSkillStatus& value) { SetAlexaSkillStatus(value); return *this;} /** *

The status of the Alexa Skill configuration.

*/ inline SipMediaApplicationAlexaSkillConfiguration& WithAlexaSkillStatus(AlexaSkillStatus&& value) { SetAlexaSkillStatus(std::move(value)); return *this;} /** *

The ID of the Alexa Skill configuration.

*/ inline const Aws::Vector& GetAlexaSkillIds() const{ return m_alexaSkillIds; } /** *

The ID of the Alexa Skill configuration.

*/ inline bool AlexaSkillIdsHasBeenSet() const { return m_alexaSkillIdsHasBeenSet; } /** *

The ID of the Alexa Skill configuration.

*/ inline void SetAlexaSkillIds(const Aws::Vector& value) { m_alexaSkillIdsHasBeenSet = true; m_alexaSkillIds = value; } /** *

The ID of the Alexa Skill configuration.

*/ inline void SetAlexaSkillIds(Aws::Vector&& value) { m_alexaSkillIdsHasBeenSet = true; m_alexaSkillIds = std::move(value); } /** *

The ID of the Alexa Skill configuration.

*/ inline SipMediaApplicationAlexaSkillConfiguration& WithAlexaSkillIds(const Aws::Vector& value) { SetAlexaSkillIds(value); return *this;} /** *

The ID of the Alexa Skill configuration.

*/ inline SipMediaApplicationAlexaSkillConfiguration& WithAlexaSkillIds(Aws::Vector&& value) { SetAlexaSkillIds(std::move(value)); return *this;} /** *

The ID of the Alexa Skill configuration.

*/ inline SipMediaApplicationAlexaSkillConfiguration& AddAlexaSkillIds(const Aws::String& value) { m_alexaSkillIdsHasBeenSet = true; m_alexaSkillIds.push_back(value); return *this; } /** *

The ID of the Alexa Skill configuration.

*/ inline SipMediaApplicationAlexaSkillConfiguration& AddAlexaSkillIds(Aws::String&& value) { m_alexaSkillIdsHasBeenSet = true; m_alexaSkillIds.push_back(std::move(value)); return *this; } /** *

The ID of the Alexa Skill configuration.

*/ inline SipMediaApplicationAlexaSkillConfiguration& AddAlexaSkillIds(const char* value) { m_alexaSkillIdsHasBeenSet = true; m_alexaSkillIds.push_back(value); return *this; } private: AlexaSkillStatus m_alexaSkillStatus; bool m_alexaSkillStatusHasBeenSet = false; Aws::Vector m_alexaSkillIds; bool m_alexaSkillIdsHasBeenSet = false; }; } // namespace Model } // namespace ChimeSDKVoice } // namespace Aws