61 lines
1.6 KiB
C++
61 lines
1.6 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#include <aws/frauddetector/model/BatchCreateVariableRequest.h>
|
|
#include <aws/core/utils/json/JsonSerializer.h>
|
|
|
|
#include <utility>
|
|
|
|
using namespace Aws::FraudDetector::Model;
|
|
using namespace Aws::Utils::Json;
|
|
using namespace Aws::Utils;
|
|
|
|
BatchCreateVariableRequest::BatchCreateVariableRequest() :
|
|
m_variableEntriesHasBeenSet(false),
|
|
m_tagsHasBeenSet(false)
|
|
{
|
|
}
|
|
|
|
Aws::String BatchCreateVariableRequest::SerializePayload() const
|
|
{
|
|
JsonValue payload;
|
|
|
|
if(m_variableEntriesHasBeenSet)
|
|
{
|
|
Array<JsonValue> variableEntriesJsonList(m_variableEntries.size());
|
|
for(unsigned variableEntriesIndex = 0; variableEntriesIndex < variableEntriesJsonList.GetLength(); ++variableEntriesIndex)
|
|
{
|
|
variableEntriesJsonList[variableEntriesIndex].AsObject(m_variableEntries[variableEntriesIndex].Jsonize());
|
|
}
|
|
payload.WithArray("variableEntries", std::move(variableEntriesJsonList));
|
|
|
|
}
|
|
|
|
if(m_tagsHasBeenSet)
|
|
{
|
|
Array<JsonValue> tagsJsonList(m_tags.size());
|
|
for(unsigned tagsIndex = 0; tagsIndex < tagsJsonList.GetLength(); ++tagsIndex)
|
|
{
|
|
tagsJsonList[tagsIndex].AsObject(m_tags[tagsIndex].Jsonize());
|
|
}
|
|
payload.WithArray("tags", std::move(tagsJsonList));
|
|
|
|
}
|
|
|
|
return payload.View().WriteReadable();
|
|
}
|
|
|
|
Aws::Http::HeaderValueCollection BatchCreateVariableRequest::GetRequestSpecificHeaders() const
|
|
{
|
|
Aws::Http::HeaderValueCollection headers;
|
|
headers.insert(Aws::Http::HeaderValuePair("X-Amz-Target", "AWSHawksNestServiceFacade.BatchCreateVariable"));
|
|
return headers;
|
|
|
|
}
|
|
|
|
|
|
|
|
|