This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-lambda/source/model/UpdateFunctionConfigurationRequest.cpp

140 lines
3.0 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/lambda/model/UpdateFunctionConfigurationRequest.h>
#include <aws/core/utils/json/JsonSerializer.h>
#include <utility>
using namespace Aws::Lambda::Model;
using namespace Aws::Utils::Json;
using namespace Aws::Utils;
UpdateFunctionConfigurationRequest::UpdateFunctionConfigurationRequest() :
m_functionNameHasBeenSet(false),
m_roleHasBeenSet(false),
m_handlerHasBeenSet(false),
m_descriptionHasBeenSet(false),
m_timeout(0),
m_timeoutHasBeenSet(false),
m_memorySize(0),
m_memorySizeHasBeenSet(false),
m_vpcConfigHasBeenSet(false),
m_environmentHasBeenSet(false),
m_runtime(Runtime::NOT_SET),
m_runtimeHasBeenSet(false),
m_deadLetterConfigHasBeenSet(false),
m_kMSKeyArnHasBeenSet(false),
m_tracingConfigHasBeenSet(false),
m_revisionIdHasBeenSet(false),
m_layersHasBeenSet(false),
m_fileSystemConfigsHasBeenSet(false)
{
}
Aws::String UpdateFunctionConfigurationRequest::SerializePayload() const
{
JsonValue payload;
if(m_roleHasBeenSet)
{
payload.WithString("Role", m_role);
}
if(m_handlerHasBeenSet)
{
payload.WithString("Handler", m_handler);
}
if(m_descriptionHasBeenSet)
{
payload.WithString("Description", m_description);
}
if(m_timeoutHasBeenSet)
{
payload.WithInteger("Timeout", m_timeout);
}
if(m_memorySizeHasBeenSet)
{
payload.WithInteger("MemorySize", m_memorySize);
}
if(m_vpcConfigHasBeenSet)
{
payload.WithObject("VpcConfig", m_vpcConfig.Jsonize());
}
if(m_environmentHasBeenSet)
{
payload.WithObject("Environment", m_environment.Jsonize());
}
if(m_runtimeHasBeenSet)
{
payload.WithString("Runtime", RuntimeMapper::GetNameForRuntime(m_runtime));
}
if(m_deadLetterConfigHasBeenSet)
{
payload.WithObject("DeadLetterConfig", m_deadLetterConfig.Jsonize());
}
if(m_kMSKeyArnHasBeenSet)
{
payload.WithString("KMSKeyArn", m_kMSKeyArn);
}
if(m_tracingConfigHasBeenSet)
{
payload.WithObject("TracingConfig", m_tracingConfig.Jsonize());
}
if(m_revisionIdHasBeenSet)
{
payload.WithString("RevisionId", m_revisionId);
}
if(m_layersHasBeenSet)
{
Array<JsonValue> layersJsonList(m_layers.size());
for(unsigned layersIndex = 0; layersIndex < layersJsonList.GetLength(); ++layersIndex)
{
layersJsonList[layersIndex].AsString(m_layers[layersIndex]);
}
payload.WithArray("Layers", std::move(layersJsonList));
}
if(m_fileSystemConfigsHasBeenSet)
{
Array<JsonValue> fileSystemConfigsJsonList(m_fileSystemConfigs.size());
for(unsigned fileSystemConfigsIndex = 0; fileSystemConfigsIndex < fileSystemConfigsJsonList.GetLength(); ++fileSystemConfigsIndex)
{
fileSystemConfigsJsonList[fileSystemConfigsIndex].AsObject(m_fileSystemConfigs[fileSystemConfigsIndex].Jsonize());
}
payload.WithArray("FileSystemConfigs", std::move(fileSystemConfigsJsonList));
}
return payload.View().WriteReadable();
}