This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-glue/include/aws/glue/model/StartMLEvaluationTaskRunRequest.h

86 lines
2.7 KiB
C
Raw Normal View History

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/glue/Glue_EXPORTS.h>
#include <aws/glue/GlueRequest.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <utility>
namespace Aws
{
namespace Glue
{
namespace Model
{
/**
*/
class AWS_GLUE_API StartMLEvaluationTaskRunRequest : public GlueRequest
{
public:
StartMLEvaluationTaskRunRequest();
// 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 "StartMLEvaluationTaskRun"; }
Aws::String SerializePayload() const override;
Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override;
/**
* <p>The unique identifier of the machine learning transform.</p>
*/
inline const Aws::String& GetTransformId() const{ return m_transformId; }
/**
* <p>The unique identifier of the machine learning transform.</p>
*/
inline bool TransformIdHasBeenSet() const { return m_transformIdHasBeenSet; }
/**
* <p>The unique identifier of the machine learning transform.</p>
*/
inline void SetTransformId(const Aws::String& value) { m_transformIdHasBeenSet = true; m_transformId = value; }
/**
* <p>The unique identifier of the machine learning transform.</p>
*/
inline void SetTransformId(Aws::String&& value) { m_transformIdHasBeenSet = true; m_transformId = std::move(value); }
/**
* <p>The unique identifier of the machine learning transform.</p>
*/
inline void SetTransformId(const char* value) { m_transformIdHasBeenSet = true; m_transformId.assign(value); }
/**
* <p>The unique identifier of the machine learning transform.</p>
*/
inline StartMLEvaluationTaskRunRequest& WithTransformId(const Aws::String& value) { SetTransformId(value); return *this;}
/**
* <p>The unique identifier of the machine learning transform.</p>
*/
inline StartMLEvaluationTaskRunRequest& WithTransformId(Aws::String&& value) { SetTransformId(std::move(value)); return *this;}
/**
* <p>The unique identifier of the machine learning transform.</p>
*/
inline StartMLEvaluationTaskRunRequest& WithTransformId(const char* value) { SetTransformId(value); return *this;}
private:
Aws::String m_transformId;
bool m_transformIdHasBeenSet;
};
} // namespace Model
} // namespace Glue
} // namespace Aws