/** * 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 SageMaker { namespace Model { /** */ class DescribeModelQualityJobDefinitionRequest : public SageMakerRequest { public: AWS_SAGEMAKER_API DescribeModelQualityJobDefinitionRequest(); // 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 "DescribeModelQualityJobDefinition"; } AWS_SAGEMAKER_API Aws::String SerializePayload() const override; AWS_SAGEMAKER_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

The name of the model quality job. The name must be unique within an Amazon * Web Services Region in the Amazon Web Services account.

*/ inline const Aws::String& GetJobDefinitionName() const{ return m_jobDefinitionName; } /** *

The name of the model quality job. The name must be unique within an Amazon * Web Services Region in the Amazon Web Services account.

*/ inline bool JobDefinitionNameHasBeenSet() const { return m_jobDefinitionNameHasBeenSet; } /** *

The name of the model quality job. The name must be unique within an Amazon * Web Services Region in the Amazon Web Services account.

*/ inline void SetJobDefinitionName(const Aws::String& value) { m_jobDefinitionNameHasBeenSet = true; m_jobDefinitionName = value; } /** *

The name of the model quality job. The name must be unique within an Amazon * Web Services Region in the Amazon Web Services account.

*/ inline void SetJobDefinitionName(Aws::String&& value) { m_jobDefinitionNameHasBeenSet = true; m_jobDefinitionName = std::move(value); } /** *

The name of the model quality job. The name must be unique within an Amazon * Web Services Region in the Amazon Web Services account.

*/ inline void SetJobDefinitionName(const char* value) { m_jobDefinitionNameHasBeenSet = true; m_jobDefinitionName.assign(value); } /** *

The name of the model quality job. The name must be unique within an Amazon * Web Services Region in the Amazon Web Services account.

*/ inline DescribeModelQualityJobDefinitionRequest& WithJobDefinitionName(const Aws::String& value) { SetJobDefinitionName(value); return *this;} /** *

The name of the model quality job. The name must be unique within an Amazon * Web Services Region in the Amazon Web Services account.

*/ inline DescribeModelQualityJobDefinitionRequest& WithJobDefinitionName(Aws::String&& value) { SetJobDefinitionName(std::move(value)); return *this;} /** *

The name of the model quality job. The name must be unique within an Amazon * Web Services Region in the Amazon Web Services account.

*/ inline DescribeModelQualityJobDefinitionRequest& WithJobDefinitionName(const char* value) { SetJobDefinitionName(value); return *this;} private: Aws::String m_jobDefinitionName; bool m_jobDefinitionNameHasBeenSet = false; }; } // namespace Model } // namespace SageMaker } // namespace Aws