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