/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Contains information about the resource used for the test set discrepancy
* report.See Also:
AWS
* API Reference
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