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

Contains information about the resource used for the test set discrepancy * report.

See Also:

AWS * API Reference

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

Contains information about the bot alias used as the resource for the test * set discrepancy report.

*/ inline const TestSetDiscrepancyReportBotAliasTarget& GetBotAliasTarget() const{ return m_botAliasTarget; } /** *

Contains information about the bot alias used as the resource for the test * set discrepancy report.

*/ inline bool BotAliasTargetHasBeenSet() const { return m_botAliasTargetHasBeenSet; } /** *

Contains information about the bot alias used as the resource for the test * set discrepancy report.

*/ inline void SetBotAliasTarget(const TestSetDiscrepancyReportBotAliasTarget& value) { m_botAliasTargetHasBeenSet = true; m_botAliasTarget = value; } /** *

Contains information about the bot alias used as the resource for the test * set discrepancy report.

*/ inline void SetBotAliasTarget(TestSetDiscrepancyReportBotAliasTarget&& value) { m_botAliasTargetHasBeenSet = true; m_botAliasTarget = std::move(value); } /** *

Contains information about the bot alias used as the resource for the test * set discrepancy report.

*/ inline TestSetDiscrepancyReportResourceTarget& WithBotAliasTarget(const TestSetDiscrepancyReportBotAliasTarget& value) { SetBotAliasTarget(value); return *this;} /** *

Contains information about the bot alias used as the resource for the test * set discrepancy report.

*/ inline TestSetDiscrepancyReportResourceTarget& WithBotAliasTarget(TestSetDiscrepancyReportBotAliasTarget&& value) { SetBotAliasTarget(std::move(value)); return *this;} private: TestSetDiscrepancyReportBotAliasTarget m_botAliasTarget; bool m_botAliasTargetHasBeenSet = false; }; } // namespace Model } // namespace LexModelsV2 } // namespace Aws