83 lines
1.7 KiB
C++
83 lines
1.7 KiB
C++
|
|
/**
|
|||
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|||
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
#include <aws/securityhub/model/AwsLambdaFunctionEnvironment.h>
|
|||
|
|
#include <aws/core/utils/json/JsonSerializer.h>
|
|||
|
|
|
|||
|
|
#include <utility>
|
|||
|
|
|
|||
|
|
using namespace Aws::Utils::Json;
|
|||
|
|
using namespace Aws::Utils;
|
|||
|
|
|
|||
|
|
namespace Aws
|
|||
|
|
{
|
|||
|
|
namespace SecurityHub
|
|||
|
|
{
|
|||
|
|
namespace Model
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
AwsLambdaFunctionEnvironment::AwsLambdaFunctionEnvironment() :
|
|||
|
|
m_variablesHasBeenSet(false),
|
|||
|
|
m_errorHasBeenSet(false)
|
|||
|
|
{
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
AwsLambdaFunctionEnvironment::AwsLambdaFunctionEnvironment(JsonView jsonValue) :
|
|||
|
|
m_variablesHasBeenSet(false),
|
|||
|
|
m_errorHasBeenSet(false)
|
|||
|
|
{
|
|||
|
|
*this = jsonValue;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
AwsLambdaFunctionEnvironment& AwsLambdaFunctionEnvironment::operator =(JsonView jsonValue)
|
|||
|
|
{
|
|||
|
|
if(jsonValue.ValueExists("Variables"))
|
|||
|
|
{
|
|||
|
|
Aws::Map<Aws::String, JsonView> variablesJsonMap = jsonValue.GetObject("Variables").GetAllObjects();
|
|||
|
|
for(auto& variablesItem : variablesJsonMap)
|
|||
|
|
{
|
|||
|
|
m_variables[variablesItem.first] = variablesItem.second.AsString();
|
|||
|
|
}
|
|||
|
|
m_variablesHasBeenSet = true;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(jsonValue.ValueExists("Error"))
|
|||
|
|
{
|
|||
|
|
m_error = jsonValue.GetObject("Error");
|
|||
|
|
|
|||
|
|
m_errorHasBeenSet = true;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
return *this;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
JsonValue AwsLambdaFunctionEnvironment::Jsonize() const
|
|||
|
|
{
|
|||
|
|
JsonValue payload;
|
|||
|
|
|
|||
|
|
if(m_variablesHasBeenSet)
|
|||
|
|
{
|
|||
|
|
JsonValue variablesJsonMap;
|
|||
|
|
for(auto& variablesItem : m_variables)
|
|||
|
|
{
|
|||
|
|
variablesJsonMap.WithString(variablesItem.first, variablesItem.second);
|
|||
|
|
}
|
|||
|
|
payload.WithObject("Variables", std::move(variablesJsonMap));
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if(m_errorHasBeenSet)
|
|||
|
|
{
|
|||
|
|
payload.WithObject("Error", m_error.Jsonize());
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
return payload;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
} // namespace Model
|
|||
|
|
} // namespace SecurityHub
|
|||
|
|
} // namespace Aws
|