98 lines
2.6 KiB
C++
98 lines
2.6 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#include <aws/apigateway/model/TestInvokeAuthorizerRequest.h>
|
|
#include <aws/core/utils/json/JsonSerializer.h>
|
|
|
|
#include <utility>
|
|
|
|
using namespace Aws::APIGateway::Model;
|
|
using namespace Aws::Utils::Json;
|
|
using namespace Aws::Utils;
|
|
|
|
TestInvokeAuthorizerRequest::TestInvokeAuthorizerRequest() :
|
|
m_restApiIdHasBeenSet(false),
|
|
m_authorizerIdHasBeenSet(false),
|
|
m_multiValueHeadersHasBeenSet(false),
|
|
m_pathWithQueryStringHasBeenSet(false),
|
|
m_stageVariablesHasBeenSet(false),
|
|
m_additionalContextHasBeenSet(false),
|
|
m_requestBodyHasBeenSet(false),
|
|
m_requestHeadersHasBeenSet(false)
|
|
{
|
|
}
|
|
|
|
Aws::String TestInvokeAuthorizerRequest::SerializePayload() const
|
|
{
|
|
JsonValue payload;
|
|
|
|
if(m_multiValueHeadersHasBeenSet)
|
|
{
|
|
JsonValue multiValueHeadersJsonMap;
|
|
for(auto& multiValueHeadersItem : m_multiValueHeaders)
|
|
{
|
|
Array<JsonValue> listOfStringJsonList(multiValueHeadersItem.second.size());
|
|
for(unsigned listOfStringIndex = 0; listOfStringIndex < listOfStringJsonList.GetLength(); ++listOfStringIndex)
|
|
{
|
|
listOfStringJsonList[listOfStringIndex].AsString(multiValueHeadersItem.second[listOfStringIndex]);
|
|
}
|
|
multiValueHeadersJsonMap.WithArray(multiValueHeadersItem.first, std::move(listOfStringJsonList));
|
|
}
|
|
payload.WithObject("multiValueHeaders", std::move(multiValueHeadersJsonMap));
|
|
|
|
}
|
|
|
|
if(m_pathWithQueryStringHasBeenSet)
|
|
{
|
|
payload.WithString("pathWithQueryString", m_pathWithQueryString);
|
|
|
|
}
|
|
|
|
if(m_stageVariablesHasBeenSet)
|
|
{
|
|
JsonValue stageVariablesJsonMap;
|
|
for(auto& stageVariablesItem : m_stageVariables)
|
|
{
|
|
stageVariablesJsonMap.WithString(stageVariablesItem.first, stageVariablesItem.second);
|
|
}
|
|
payload.WithObject("stageVariables", std::move(stageVariablesJsonMap));
|
|
|
|
}
|
|
|
|
if(m_additionalContextHasBeenSet)
|
|
{
|
|
JsonValue additionalContextJsonMap;
|
|
for(auto& additionalContextItem : m_additionalContext)
|
|
{
|
|
additionalContextJsonMap.WithString(additionalContextItem.first, additionalContextItem.second);
|
|
}
|
|
payload.WithObject("additionalContext", std::move(additionalContextJsonMap));
|
|
|
|
}
|
|
|
|
if(m_requestBodyHasBeenSet)
|
|
{
|
|
payload.WithString("requestBody", m_requestBody);
|
|
|
|
}
|
|
|
|
if(m_requestHeadersHasBeenSet)
|
|
{
|
|
JsonValue requestHeadersJsonMap;
|
|
for(auto& requestHeadersItem : m_requestHeaders)
|
|
{
|
|
requestHeadersJsonMap.WithString(requestHeadersItem.first, requestHeadersItem.second);
|
|
}
|
|
payload.WithObject("requestHeaders", std::move(requestHeadersJsonMap));
|
|
|
|
}
|
|
|
|
return payload.View().WriteReadable();
|
|
}
|
|
|
|
|
|
|
|
|