/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { namespace LexModelsV2 { namespace Model { /** */ class DescribeTestSetDiscrepancyReportRequest : public LexModelsV2Request { public: AWS_LEXMODELSV2_API DescribeTestSetDiscrepancyReportRequest(); // Service request name is the Operation name which will send this request out, // each operation should has unique request name, so that we can get operation's name from this request. // Note: this is not true for response, multiple operations may have the same response name, // so we can not get operation's name from response. inline virtual const char* GetServiceRequestName() const override { return "DescribeTestSetDiscrepancyReport"; } AWS_LEXMODELSV2_API Aws::String SerializePayload() const override; /** *

The unique identifier of the test set discrepancy report.

*/ inline const Aws::String& GetTestSetDiscrepancyReportId() const{ return m_testSetDiscrepancyReportId; } /** *

The unique identifier of the test set discrepancy report.

*/ inline bool TestSetDiscrepancyReportIdHasBeenSet() const { return m_testSetDiscrepancyReportIdHasBeenSet; } /** *

The unique identifier of the test set discrepancy report.

*/ inline void SetTestSetDiscrepancyReportId(const Aws::String& value) { m_testSetDiscrepancyReportIdHasBeenSet = true; m_testSetDiscrepancyReportId = value; } /** *

The unique identifier of the test set discrepancy report.

*/ inline void SetTestSetDiscrepancyReportId(Aws::String&& value) { m_testSetDiscrepancyReportIdHasBeenSet = true; m_testSetDiscrepancyReportId = std::move(value); } /** *

The unique identifier of the test set discrepancy report.

*/ inline void SetTestSetDiscrepancyReportId(const char* value) { m_testSetDiscrepancyReportIdHasBeenSet = true; m_testSetDiscrepancyReportId.assign(value); } /** *

The unique identifier of the test set discrepancy report.

*/ inline DescribeTestSetDiscrepancyReportRequest& WithTestSetDiscrepancyReportId(const Aws::String& value) { SetTestSetDiscrepancyReportId(value); return *this;} /** *

The unique identifier of the test set discrepancy report.

*/ inline DescribeTestSetDiscrepancyReportRequest& WithTestSetDiscrepancyReportId(Aws::String&& value) { SetTestSetDiscrepancyReportId(std::move(value)); return *this;} /** *

The unique identifier of the test set discrepancy report.

*/ inline DescribeTestSetDiscrepancyReportRequest& WithTestSetDiscrepancyReportId(const char* value) { SetTestSetDiscrepancyReportId(value); return *this;} private: Aws::String m_testSetDiscrepancyReportId; bool m_testSetDiscrepancyReportIdHasBeenSet = false; }; } // namespace Model } // namespace LexModelsV2 } // namespace Aws