/** * 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 DescribeTestSetGenerationRequest : public LexModelsV2Request { public: AWS_LEXMODELSV2_API DescribeTestSetGenerationRequest(); // 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 "DescribeTestSetGeneration"; } AWS_LEXMODELSV2_API Aws::String SerializePayload() const override; /** *

The unique identifier of the test set generation.

*/ inline const Aws::String& GetTestSetGenerationId() const{ return m_testSetGenerationId; } /** *

The unique identifier of the test set generation.

*/ inline bool TestSetGenerationIdHasBeenSet() const { return m_testSetGenerationIdHasBeenSet; } /** *

The unique identifier of the test set generation.

*/ inline void SetTestSetGenerationId(const Aws::String& value) { m_testSetGenerationIdHasBeenSet = true; m_testSetGenerationId = value; } /** *

The unique identifier of the test set generation.

*/ inline void SetTestSetGenerationId(Aws::String&& value) { m_testSetGenerationIdHasBeenSet = true; m_testSetGenerationId = std::move(value); } /** *

The unique identifier of the test set generation.

*/ inline void SetTestSetGenerationId(const char* value) { m_testSetGenerationIdHasBeenSet = true; m_testSetGenerationId.assign(value); } /** *

The unique identifier of the test set generation.

*/ inline DescribeTestSetGenerationRequest& WithTestSetGenerationId(const Aws::String& value) { SetTestSetGenerationId(value); return *this;} /** *

The unique identifier of the test set generation.

*/ inline DescribeTestSetGenerationRequest& WithTestSetGenerationId(Aws::String&& value) { SetTestSetGenerationId(std::move(value)); return *this;} /** *

The unique identifier of the test set generation.

*/ inline DescribeTestSetGenerationRequest& WithTestSetGenerationId(const char* value) { SetTestSetGenerationId(value); return *this;} private: Aws::String m_testSetGenerationId; bool m_testSetGenerationIdHasBeenSet = false; }; } // namespace Model } // namespace LexModelsV2 } // namespace Aws