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-greengrass/source/model/ResourceDefinitionVersion.cpp

68 lines
1.5 KiB
C++
Raw Normal View History

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/greengrass/model/ResourceDefinitionVersion.h>
#include <aws/core/utils/json/JsonSerializer.h>
#include <utility>
using namespace Aws::Utils::Json;
using namespace Aws::Utils;
namespace Aws
{
namespace Greengrass
{
namespace Model
{
ResourceDefinitionVersion::ResourceDefinitionVersion() :
m_resourcesHasBeenSet(false)
{
}
ResourceDefinitionVersion::ResourceDefinitionVersion(JsonView jsonValue) :
m_resourcesHasBeenSet(false)
{
*this = jsonValue;
}
ResourceDefinitionVersion& ResourceDefinitionVersion::operator =(JsonView jsonValue)
{
if(jsonValue.ValueExists("Resources"))
{
Array<JsonView> resourcesJsonList = jsonValue.GetArray("Resources");
for(unsigned resourcesIndex = 0; resourcesIndex < resourcesJsonList.GetLength(); ++resourcesIndex)
{
m_resources.push_back(resourcesJsonList[resourcesIndex].AsObject());
}
m_resourcesHasBeenSet = true;
}
return *this;
}
JsonValue ResourceDefinitionVersion::Jsonize() const
{
JsonValue payload;
if(m_resourcesHasBeenSet)
{
Array<JsonValue> resourcesJsonList(m_resources.size());
for(unsigned resourcesIndex = 0; resourcesIndex < resourcesJsonList.GetLength(); ++resourcesIndex)
{
resourcesJsonList[resourcesIndex].AsObject(m_resources[resourcesIndex].Jsonize());
}
payload.WithArray("Resources", std::move(resourcesJsonList));
}
return payload;
}
} // namespace Model
} // namespace Greengrass
} // namespace Aws