/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #include #include #include 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), m_imageConfigHasBeenSet(false), m_ephemeralStorageHasBeenSet(false), m_snapStartHasBeenSet(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) { Aws::Utils::Array 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) { Aws::Utils::Array 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)); } if(m_imageConfigHasBeenSet) { payload.WithObject("ImageConfig", m_imageConfig.Jsonize()); } if(m_ephemeralStorageHasBeenSet) { payload.WithObject("EphemeralStorage", m_ephemeralStorage.Jsonize()); } if(m_snapStartHasBeenSet) { payload.WithObject("SnapStart", m_snapStart.Jsonize()); } return payload.View().WriteReadable(); }