68 lines
1.9 KiB
C++
68 lines
1.9 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#pragma once
|
|
#include <aws/personalize/Personalize_EXPORTS.h>
|
|
#include <aws/personalize/model/BatchInferenceJob.h>
|
|
#include <utility>
|
|
|
|
namespace Aws
|
|
{
|
|
template<typename RESULT_TYPE>
|
|
class AmazonWebServiceResult;
|
|
|
|
namespace Utils
|
|
{
|
|
namespace Json
|
|
{
|
|
class JsonValue;
|
|
} // namespace Json
|
|
} // namespace Utils
|
|
namespace Personalize
|
|
{
|
|
namespace Model
|
|
{
|
|
class AWS_PERSONALIZE_API DescribeBatchInferenceJobResult
|
|
{
|
|
public:
|
|
DescribeBatchInferenceJobResult();
|
|
DescribeBatchInferenceJobResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|
DescribeBatchInferenceJobResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|
|
|
|
|
/**
|
|
* <p>Information on the specified batch inference job.</p>
|
|
*/
|
|
inline const BatchInferenceJob& GetBatchInferenceJob() const{ return m_batchInferenceJob; }
|
|
|
|
/**
|
|
* <p>Information on the specified batch inference job.</p>
|
|
*/
|
|
inline void SetBatchInferenceJob(const BatchInferenceJob& value) { m_batchInferenceJob = value; }
|
|
|
|
/**
|
|
* <p>Information on the specified batch inference job.</p>
|
|
*/
|
|
inline void SetBatchInferenceJob(BatchInferenceJob&& value) { m_batchInferenceJob = std::move(value); }
|
|
|
|
/**
|
|
* <p>Information on the specified batch inference job.</p>
|
|
*/
|
|
inline DescribeBatchInferenceJobResult& WithBatchInferenceJob(const BatchInferenceJob& value) { SetBatchInferenceJob(value); return *this;}
|
|
|
|
/**
|
|
* <p>Information on the specified batch inference job.</p>
|
|
*/
|
|
inline DescribeBatchInferenceJobResult& WithBatchInferenceJob(BatchInferenceJob&& value) { SetBatchInferenceJob(std::move(value)); return *this;}
|
|
|
|
private:
|
|
|
|
BatchInferenceJob m_batchInferenceJob;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace Personalize
|
|
} // namespace Aws
|