/** * 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 test set that is exported.

See * Also:

AWS * API Reference

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

The unique identifier of the test set.

*/ inline const Aws::String& GetTestSetId() const{ return m_testSetId; } /** *

The unique identifier of the test set.

*/ inline bool TestSetIdHasBeenSet() const { return m_testSetIdHasBeenSet; } /** *

The unique identifier of the test set.

*/ inline void SetTestSetId(const Aws::String& value) { m_testSetIdHasBeenSet = true; m_testSetId = value; } /** *

The unique identifier of the test set.

*/ inline void SetTestSetId(Aws::String&& value) { m_testSetIdHasBeenSet = true; m_testSetId = std::move(value); } /** *

The unique identifier of the test set.

*/ inline void SetTestSetId(const char* value) { m_testSetIdHasBeenSet = true; m_testSetId.assign(value); } /** *

The unique identifier of the test set.

*/ inline TestSetExportSpecification& WithTestSetId(const Aws::String& value) { SetTestSetId(value); return *this;} /** *

The unique identifier of the test set.

*/ inline TestSetExportSpecification& WithTestSetId(Aws::String&& value) { SetTestSetId(std::move(value)); return *this;} /** *

The unique identifier of the test set.

*/ inline TestSetExportSpecification& WithTestSetId(const char* value) { SetTestSetId(value); return *this;} private: Aws::String m_testSetId; bool m_testSetIdHasBeenSet = false; }; } // namespace Model } // namespace LexModelsV2 } // namespace Aws