94 lines
1.9 KiB
C++
94 lines
1.9 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#include <aws/personalize/model/CreateBatchInferenceJobRequest.h>
|
|
#include <aws/core/utils/json/JsonSerializer.h>
|
|
|
|
#include <utility>
|
|
|
|
using namespace Aws::Personalize::Model;
|
|
using namespace Aws::Utils::Json;
|
|
using namespace Aws::Utils;
|
|
|
|
CreateBatchInferenceJobRequest::CreateBatchInferenceJobRequest() :
|
|
m_jobNameHasBeenSet(false),
|
|
m_solutionVersionArnHasBeenSet(false),
|
|
m_filterArnHasBeenSet(false),
|
|
m_numResults(0),
|
|
m_numResultsHasBeenSet(false),
|
|
m_jobInputHasBeenSet(false),
|
|
m_jobOutputHasBeenSet(false),
|
|
m_roleArnHasBeenSet(false),
|
|
m_batchInferenceJobConfigHasBeenSet(false)
|
|
{
|
|
}
|
|
|
|
Aws::String CreateBatchInferenceJobRequest::SerializePayload() const
|
|
{
|
|
JsonValue payload;
|
|
|
|
if(m_jobNameHasBeenSet)
|
|
{
|
|
payload.WithString("jobName", m_jobName);
|
|
|
|
}
|
|
|
|
if(m_solutionVersionArnHasBeenSet)
|
|
{
|
|
payload.WithString("solutionVersionArn", m_solutionVersionArn);
|
|
|
|
}
|
|
|
|
if(m_filterArnHasBeenSet)
|
|
{
|
|
payload.WithString("filterArn", m_filterArn);
|
|
|
|
}
|
|
|
|
if(m_numResultsHasBeenSet)
|
|
{
|
|
payload.WithInteger("numResults", m_numResults);
|
|
|
|
}
|
|
|
|
if(m_jobInputHasBeenSet)
|
|
{
|
|
payload.WithObject("jobInput", m_jobInput.Jsonize());
|
|
|
|
}
|
|
|
|
if(m_jobOutputHasBeenSet)
|
|
{
|
|
payload.WithObject("jobOutput", m_jobOutput.Jsonize());
|
|
|
|
}
|
|
|
|
if(m_roleArnHasBeenSet)
|
|
{
|
|
payload.WithString("roleArn", m_roleArn);
|
|
|
|
}
|
|
|
|
if(m_batchInferenceJobConfigHasBeenSet)
|
|
{
|
|
payload.WithObject("batchInferenceJobConfig", m_batchInferenceJobConfig.Jsonize());
|
|
|
|
}
|
|
|
|
return payload.View().WriteReadable();
|
|
}
|
|
|
|
Aws::Http::HeaderValueCollection CreateBatchInferenceJobRequest::GetRequestSpecificHeaders() const
|
|
{
|
|
Aws::Http::HeaderValueCollection headers;
|
|
headers.insert(Aws::Http::HeaderValuePair("X-Amz-Target", "AmazonPersonalize.CreateBatchInferenceJob"));
|
|
return headers;
|
|
|
|
}
|
|
|
|
|
|
|
|
|