/** * 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 ChimeSDKIdentity { namespace Model { /** *

A structure that contains configuration data.

See Also:

AWS * API Reference

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

The configuration for an Amazon Lex V2 bot.

*/ inline const LexConfiguration& GetLex() const{ return m_lex; } /** *

The configuration for an Amazon Lex V2 bot.

*/ inline bool LexHasBeenSet() const { return m_lexHasBeenSet; } /** *

The configuration for an Amazon Lex V2 bot.

*/ inline void SetLex(const LexConfiguration& value) { m_lexHasBeenSet = true; m_lex = value; } /** *

The configuration for an Amazon Lex V2 bot.

*/ inline void SetLex(LexConfiguration&& value) { m_lexHasBeenSet = true; m_lex = std::move(value); } /** *

The configuration for an Amazon Lex V2 bot.

*/ inline Configuration& WithLex(const LexConfiguration& value) { SetLex(value); return *this;} /** *

The configuration for an Amazon Lex V2 bot.

*/ inline Configuration& WithLex(LexConfiguration&& value) { SetLex(std::move(value)); return *this;} private: LexConfiguration m_lex; bool m_lexHasBeenSet = false; }; } // namespace Model } // namespace ChimeSDKIdentity } // namespace Aws