/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include A structure that contains configuration data.See Also:
AWS
* API Reference
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