/** * 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 DynamoDB { namespace Model { GlobalSecondaryIndexInfo::GlobalSecondaryIndexInfo() : m_indexNameHasBeenSet(false), m_keySchemaHasBeenSet(false), m_projectionHasBeenSet(false), m_provisionedThroughputHasBeenSet(false) { } GlobalSecondaryIndexInfo::GlobalSecondaryIndexInfo(JsonView jsonValue) : m_indexNameHasBeenSet(false), m_keySchemaHasBeenSet(false), m_projectionHasBeenSet(false), m_provisionedThroughputHasBeenSet(false) { *this = jsonValue; } GlobalSecondaryIndexInfo& GlobalSecondaryIndexInfo::operator =(JsonView jsonValue) { if(jsonValue.ValueExists("IndexName")) { m_indexName = jsonValue.GetString("IndexName"); m_indexNameHasBeenSet = true; } if(jsonValue.ValueExists("KeySchema")) { Aws::Utils::Array 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 GlobalSecondaryIndexInfo::Jsonize() const { JsonValue payload; if(m_indexNameHasBeenSet) { payload.WithString("IndexName", m_indexName); } if(m_keySchemaHasBeenSet) { Aws::Utils::Array 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 DynamoDB } // namespace Aws