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-dynamodb/source/model/TableAutoScalingDescription.cpp

99 lines
2.3 KiB
C++
Raw Normal View History

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/dynamodb/model/TableAutoScalingDescription.h>
#include <aws/core/utils/json/JsonSerializer.h>
#include <utility>
using namespace Aws::Utils::Json;
using namespace Aws::Utils;
namespace Aws
{
namespace DynamoDB
{
namespace Model
{
TableAutoScalingDescription::TableAutoScalingDescription() :
m_tableNameHasBeenSet(false),
m_tableStatus(TableStatus::NOT_SET),
m_tableStatusHasBeenSet(false),
m_replicasHasBeenSet(false)
{
}
TableAutoScalingDescription::TableAutoScalingDescription(JsonView jsonValue) :
m_tableNameHasBeenSet(false),
m_tableStatus(TableStatus::NOT_SET),
m_tableStatusHasBeenSet(false),
m_replicasHasBeenSet(false)
{
*this = jsonValue;
}
TableAutoScalingDescription& TableAutoScalingDescription::operator =(JsonView jsonValue)
{
if(jsonValue.ValueExists("TableName"))
{
m_tableName = jsonValue.GetString("TableName");
m_tableNameHasBeenSet = true;
}
if(jsonValue.ValueExists("TableStatus"))
{
m_tableStatus = TableStatusMapper::GetTableStatusForName(jsonValue.GetString("TableStatus"));
m_tableStatusHasBeenSet = true;
}
if(jsonValue.ValueExists("Replicas"))
{
Array<JsonView> replicasJsonList = jsonValue.GetArray("Replicas");
for(unsigned replicasIndex = 0; replicasIndex < replicasJsonList.GetLength(); ++replicasIndex)
{
m_replicas.push_back(replicasJsonList[replicasIndex].AsObject());
}
m_replicasHasBeenSet = true;
}
return *this;
}
JsonValue TableAutoScalingDescription::Jsonize() const
{
JsonValue payload;
if(m_tableNameHasBeenSet)
{
payload.WithString("TableName", m_tableName);
}
if(m_tableStatusHasBeenSet)
{
payload.WithString("TableStatus", TableStatusMapper::GetNameForTableStatus(m_tableStatus));
}
if(m_replicasHasBeenSet)
{
Array<JsonValue> replicasJsonList(m_replicas.size());
for(unsigned replicasIndex = 0; replicasIndex < replicasJsonList.GetLength(); ++replicasIndex)
{
replicasJsonList[replicasIndex].AsObject(m_replicas[replicasIndex].Jsonize());
}
payload.WithArray("Replicas", std::move(replicasJsonList));
}
return payload;
}
} // namespace Model
} // namespace DynamoDB
} // namespace Aws