/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #include #include #include using namespace Aws::Utils::Json; using namespace Aws::Utils; namespace Aws { namespace Lambda { namespace Model { EnvironmentResponse::EnvironmentResponse() : m_variablesHasBeenSet(false), m_errorHasBeenSet(false) { } EnvironmentResponse::EnvironmentResponse(JsonView jsonValue) : m_variablesHasBeenSet(false), m_errorHasBeenSet(false) { *this = jsonValue; } EnvironmentResponse& EnvironmentResponse::operator =(JsonView jsonValue) { if(jsonValue.ValueExists("Variables")) { Aws::Map 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 EnvironmentResponse::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 Lambda } // namespace Aws