138 lines
5.0 KiB
C++
138 lines
5.0 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#pragma once
|
|
#include <aws/machinelearning/MachineLearning_EXPORTS.h>
|
|
#include <aws/machinelearning/MachineLearningRequest.h>
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|
#include <utility>
|
|
|
|
namespace Aws
|
|
{
|
|
namespace MachineLearning
|
|
{
|
|
namespace Model
|
|
{
|
|
|
|
/**
|
|
*/
|
|
class AWS_MACHINELEARNING_API UpdateBatchPredictionRequest : public MachineLearningRequest
|
|
{
|
|
public:
|
|
UpdateBatchPredictionRequest();
|
|
|
|
// 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 "UpdateBatchPrediction"; }
|
|
|
|
Aws::String SerializePayload() const override;
|
|
|
|
Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override;
|
|
|
|
|
|
/**
|
|
* <p>The ID assigned to the <code>BatchPrediction</code> during creation.</p>
|
|
*/
|
|
inline const Aws::String& GetBatchPredictionId() const{ return m_batchPredictionId; }
|
|
|
|
/**
|
|
* <p>The ID assigned to the <code>BatchPrediction</code> during creation.</p>
|
|
*/
|
|
inline bool BatchPredictionIdHasBeenSet() const { return m_batchPredictionIdHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The ID assigned to the <code>BatchPrediction</code> during creation.</p>
|
|
*/
|
|
inline void SetBatchPredictionId(const Aws::String& value) { m_batchPredictionIdHasBeenSet = true; m_batchPredictionId = value; }
|
|
|
|
/**
|
|
* <p>The ID assigned to the <code>BatchPrediction</code> during creation.</p>
|
|
*/
|
|
inline void SetBatchPredictionId(Aws::String&& value) { m_batchPredictionIdHasBeenSet = true; m_batchPredictionId = std::move(value); }
|
|
|
|
/**
|
|
* <p>The ID assigned to the <code>BatchPrediction</code> during creation.</p>
|
|
*/
|
|
inline void SetBatchPredictionId(const char* value) { m_batchPredictionIdHasBeenSet = true; m_batchPredictionId.assign(value); }
|
|
|
|
/**
|
|
* <p>The ID assigned to the <code>BatchPrediction</code> during creation.</p>
|
|
*/
|
|
inline UpdateBatchPredictionRequest& WithBatchPredictionId(const Aws::String& value) { SetBatchPredictionId(value); return *this;}
|
|
|
|
/**
|
|
* <p>The ID assigned to the <code>BatchPrediction</code> during creation.</p>
|
|
*/
|
|
inline UpdateBatchPredictionRequest& WithBatchPredictionId(Aws::String&& value) { SetBatchPredictionId(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The ID assigned to the <code>BatchPrediction</code> during creation.</p>
|
|
*/
|
|
inline UpdateBatchPredictionRequest& WithBatchPredictionId(const char* value) { SetBatchPredictionId(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>A new user-supplied name or description of the
|
|
* <code>BatchPrediction</code>.</p>
|
|
*/
|
|
inline const Aws::String& GetBatchPredictionName() const{ return m_batchPredictionName; }
|
|
|
|
/**
|
|
* <p>A new user-supplied name or description of the
|
|
* <code>BatchPrediction</code>.</p>
|
|
*/
|
|
inline bool BatchPredictionNameHasBeenSet() const { return m_batchPredictionNameHasBeenSet; }
|
|
|
|
/**
|
|
* <p>A new user-supplied name or description of the
|
|
* <code>BatchPrediction</code>.</p>
|
|
*/
|
|
inline void SetBatchPredictionName(const Aws::String& value) { m_batchPredictionNameHasBeenSet = true; m_batchPredictionName = value; }
|
|
|
|
/**
|
|
* <p>A new user-supplied name or description of the
|
|
* <code>BatchPrediction</code>.</p>
|
|
*/
|
|
inline void SetBatchPredictionName(Aws::String&& value) { m_batchPredictionNameHasBeenSet = true; m_batchPredictionName = std::move(value); }
|
|
|
|
/**
|
|
* <p>A new user-supplied name or description of the
|
|
* <code>BatchPrediction</code>.</p>
|
|
*/
|
|
inline void SetBatchPredictionName(const char* value) { m_batchPredictionNameHasBeenSet = true; m_batchPredictionName.assign(value); }
|
|
|
|
/**
|
|
* <p>A new user-supplied name or description of the
|
|
* <code>BatchPrediction</code>.</p>
|
|
*/
|
|
inline UpdateBatchPredictionRequest& WithBatchPredictionName(const Aws::String& value) { SetBatchPredictionName(value); return *this;}
|
|
|
|
/**
|
|
* <p>A new user-supplied name or description of the
|
|
* <code>BatchPrediction</code>.</p>
|
|
*/
|
|
inline UpdateBatchPredictionRequest& WithBatchPredictionName(Aws::String&& value) { SetBatchPredictionName(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>A new user-supplied name or description of the
|
|
* <code>BatchPrediction</code>.</p>
|
|
*/
|
|
inline UpdateBatchPredictionRequest& WithBatchPredictionName(const char* value) { SetBatchPredictionName(value); return *this;}
|
|
|
|
private:
|
|
|
|
Aws::String m_batchPredictionId;
|
|
bool m_batchPredictionIdHasBeenSet;
|
|
|
|
Aws::String m_batchPredictionName;
|
|
bool m_batchPredictionNameHasBeenSet;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace MachineLearning
|
|
} // namespace Aws
|