feat(hos_client_create, hos_client_destory): 多次调用destory不会导致重复释放

This commit is contained in:
彭宣正
2020-12-14 17:24:58 +08:00
parent 505d529c32
commit 10b370e486
55976 changed files with 8544395 additions and 2 deletions

View File

@@ -0,0 +1,93 @@
/**
* 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;
}