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/StartMLLabelingSetGenerationTaskRunRequest.h

138 lines
4.8 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 StartMLLabelingSetGenerationTaskRunRequest : public GlueRequest
{
public:
StartMLLabelingSetGenerationTaskRunRequest();
// 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 "StartMLLabelingSetGenerationTaskRun"; }
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 StartMLLabelingSetGenerationTaskRunRequest& WithTransformId(const Aws::String& value) { SetTransformId(value); return *this;}
/**
* <p>The unique identifier of the machine learning transform.</p>
*/
inline StartMLLabelingSetGenerationTaskRunRequest& WithTransformId(Aws::String&& value) { SetTransformId(std::move(value)); return *this;}
/**
* <p>The unique identifier of the machine learning transform.</p>
*/
inline StartMLLabelingSetGenerationTaskRunRequest& WithTransformId(const char* value) { SetTransformId(value); return *this;}
/**
* <p>The Amazon Simple Storage Service (Amazon S3) path where you generate the
* labeling set.</p>
*/
inline const Aws::String& GetOutputS3Path() const{ return m_outputS3Path; }
/**
* <p>The Amazon Simple Storage Service (Amazon S3) path where you generate the
* labeling set.</p>
*/
inline bool OutputS3PathHasBeenSet() const { return m_outputS3PathHasBeenSet; }
/**
* <p>The Amazon Simple Storage Service (Amazon S3) path where you generate the
* labeling set.</p>
*/
inline void SetOutputS3Path(const Aws::String& value) { m_outputS3PathHasBeenSet = true; m_outputS3Path = value; }
/**
* <p>The Amazon Simple Storage Service (Amazon S3) path where you generate the
* labeling set.</p>
*/
inline void SetOutputS3Path(Aws::String&& value) { m_outputS3PathHasBeenSet = true; m_outputS3Path = std::move(value); }
/**
* <p>The Amazon Simple Storage Service (Amazon S3) path where you generate the
* labeling set.</p>
*/
inline void SetOutputS3Path(const char* value) { m_outputS3PathHasBeenSet = true; m_outputS3Path.assign(value); }
/**
* <p>The Amazon Simple Storage Service (Amazon S3) path where you generate the
* labeling set.</p>
*/
inline StartMLLabelingSetGenerationTaskRunRequest& WithOutputS3Path(const Aws::String& value) { SetOutputS3Path(value); return *this;}
/**
* <p>The Amazon Simple Storage Service (Amazon S3) path where you generate the
* labeling set.</p>
*/
inline StartMLLabelingSetGenerationTaskRunRequest& WithOutputS3Path(Aws::String&& value) { SetOutputS3Path(std::move(value)); return *this;}
/**
* <p>The Amazon Simple Storage Service (Amazon S3) path where you generate the
* labeling set.</p>
*/
inline StartMLLabelingSetGenerationTaskRunRequest& WithOutputS3Path(const char* value) { SetOutputS3Path(value); return *this;}
private:
Aws::String m_transformId;
bool m_transformIdHasBeenSet;
Aws::String m_outputS3Path;
bool m_outputS3PathHasBeenSet;
};
} // namespace Model
} // namespace Glue
} // namespace Aws