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-securityhub/source/model/AwsDynamoDbTableGlobalSecondaryIndex.cpp

194 lines
4.3 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/securityhub/model/AwsDynamoDbTableGlobalSecondaryIndex.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
{
AwsDynamoDbTableGlobalSecondaryIndex::AwsDynamoDbTableGlobalSecondaryIndex() :
m_backfilling(false),
m_backfillingHasBeenSet(false),
m_indexArnHasBeenSet(false),
m_indexNameHasBeenSet(false),
m_indexSizeBytes(0),
m_indexSizeBytesHasBeenSet(false),
m_indexStatusHasBeenSet(false),
m_itemCount(0),
m_itemCountHasBeenSet(false),
m_keySchemaHasBeenSet(false),
m_projectionHasBeenSet(false),
m_provisionedThroughputHasBeenSet(false)
{
}
AwsDynamoDbTableGlobalSecondaryIndex::AwsDynamoDbTableGlobalSecondaryIndex(JsonView jsonValue) :
m_backfilling(false),
m_backfillingHasBeenSet(false),
m_indexArnHasBeenSet(false),
m_indexNameHasBeenSet(false),
m_indexSizeBytes(0),
m_indexSizeBytesHasBeenSet(false),
m_indexStatusHasBeenSet(false),
m_itemCount(0),
m_itemCountHasBeenSet(false),
m_keySchemaHasBeenSet(false),
m_projectionHasBeenSet(false),
m_provisionedThroughputHasBeenSet(false)
{
*this = jsonValue;
}
AwsDynamoDbTableGlobalSecondaryIndex& AwsDynamoDbTableGlobalSecondaryIndex::operator =(JsonView jsonValue)
{
if(jsonValue.ValueExists("Backfilling"))
{
m_backfilling = jsonValue.GetBool("Backfilling");
m_backfillingHasBeenSet = true;
}
if(jsonValue.ValueExists("IndexArn"))
{
m_indexArn = jsonValue.GetString("IndexArn");
m_indexArnHasBeenSet = true;
}
if(jsonValue.ValueExists("IndexName"))
{
m_indexName = jsonValue.GetString("IndexName");
m_indexNameHasBeenSet = true;
}
if(jsonValue.ValueExists("IndexSizeBytes"))
{
m_indexSizeBytes = jsonValue.GetInt64("IndexSizeBytes");
m_indexSizeBytesHasBeenSet = true;
}
if(jsonValue.ValueExists("IndexStatus"))
{
m_indexStatus = jsonValue.GetString("IndexStatus");
m_indexStatusHasBeenSet = true;
}
if(jsonValue.ValueExists("ItemCount"))
{
m_itemCount = jsonValue.GetInteger("ItemCount");
m_itemCountHasBeenSet = true;
}
if(jsonValue.ValueExists("KeySchema"))
{
Array<JsonView> keySchemaJsonList = jsonValue.GetArray("KeySchema");
for(unsigned keySchemaIndex = 0; keySchemaIndex < keySchemaJsonList.GetLength(); ++keySchemaIndex)
{
m_keySchema.push_back(keySchemaJsonList[keySchemaIndex].AsObject());
}
m_keySchemaHasBeenSet = true;
}
if(jsonValue.ValueExists("Projection"))
{
m_projection = jsonValue.GetObject("Projection");
m_projectionHasBeenSet = true;
}
if(jsonValue.ValueExists("ProvisionedThroughput"))
{
m_provisionedThroughput = jsonValue.GetObject("ProvisionedThroughput");
m_provisionedThroughputHasBeenSet = true;
}
return *this;
}
JsonValue AwsDynamoDbTableGlobalSecondaryIndex::Jsonize() const
{
JsonValue payload;
if(m_backfillingHasBeenSet)
{
payload.WithBool("Backfilling", m_backfilling);
}
if(m_indexArnHasBeenSet)
{
payload.WithString("IndexArn", m_indexArn);
}
if(m_indexNameHasBeenSet)
{
payload.WithString("IndexName", m_indexName);
}
if(m_indexSizeBytesHasBeenSet)
{
payload.WithInt64("IndexSizeBytes", m_indexSizeBytes);
}
if(m_indexStatusHasBeenSet)
{
payload.WithString("IndexStatus", m_indexStatus);
}
if(m_itemCountHasBeenSet)
{
payload.WithInteger("ItemCount", m_itemCount);
}
if(m_keySchemaHasBeenSet)
{
Array<JsonValue> keySchemaJsonList(m_keySchema.size());
for(unsigned keySchemaIndex = 0; keySchemaIndex < keySchemaJsonList.GetLength(); ++keySchemaIndex)
{
keySchemaJsonList[keySchemaIndex].AsObject(m_keySchema[keySchemaIndex].Jsonize());
}
payload.WithArray("KeySchema", std::move(keySchemaJsonList));
}
if(m_projectionHasBeenSet)
{
payload.WithObject("Projection", m_projection.Jsonize());
}
if(m_provisionedThroughputHasBeenSet)
{
payload.WithObject("ProvisionedThroughput", m_provisionedThroughput.Jsonize());
}
return payload;
}
} // namespace Model
} // namespace SecurityHub
} // namespace Aws