/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Represents the settings of a global secondary index for a global table that
* will be modified.See Also:
AWS
* API Reference
The name of the global secondary index. The name must be unique among all * other indexes on this table.
*/ inline const Aws::String& GetIndexName() const{ return m_indexName; } /** *The name of the global secondary index. The name must be unique among all * other indexes on this table.
*/ inline bool IndexNameHasBeenSet() const { return m_indexNameHasBeenSet; } /** *The name of the global secondary index. The name must be unique among all * other indexes on this table.
*/ inline void SetIndexName(const Aws::String& value) { m_indexNameHasBeenSet = true; m_indexName = value; } /** *The name of the global secondary index. The name must be unique among all * other indexes on this table.
*/ inline void SetIndexName(Aws::String&& value) { m_indexNameHasBeenSet = true; m_indexName = std::move(value); } /** *The name of the global secondary index. The name must be unique among all * other indexes on this table.
*/ inline void SetIndexName(const char* value) { m_indexNameHasBeenSet = true; m_indexName.assign(value); } /** *The name of the global secondary index. The name must be unique among all * other indexes on this table.
*/ inline ReplicaGlobalSecondaryIndexSettingsUpdate& WithIndexName(const Aws::String& value) { SetIndexName(value); return *this;} /** *The name of the global secondary index. The name must be unique among all * other indexes on this table.
*/ inline ReplicaGlobalSecondaryIndexSettingsUpdate& WithIndexName(Aws::String&& value) { SetIndexName(std::move(value)); return *this;} /** *The name of the global secondary index. The name must be unique among all * other indexes on this table.
*/ inline ReplicaGlobalSecondaryIndexSettingsUpdate& WithIndexName(const char* value) { SetIndexName(value); return *this;} /** *The maximum number of strongly consistent reads consumed per second before
* DynamoDB returns a ThrottlingException
.
The maximum number of strongly consistent reads consumed per second before
* DynamoDB returns a ThrottlingException
.
The maximum number of strongly consistent reads consumed per second before
* DynamoDB returns a ThrottlingException
.
The maximum number of strongly consistent reads consumed per second before
* DynamoDB returns a ThrottlingException
.
Auto scaling settings for managing a global secondary index replica's read * capacity units.
*/ inline const AutoScalingSettingsUpdate& GetProvisionedReadCapacityAutoScalingSettingsUpdate() const{ return m_provisionedReadCapacityAutoScalingSettingsUpdate; } /** *Auto scaling settings for managing a global secondary index replica's read * capacity units.
*/ inline bool ProvisionedReadCapacityAutoScalingSettingsUpdateHasBeenSet() const { return m_provisionedReadCapacityAutoScalingSettingsUpdateHasBeenSet; } /** *Auto scaling settings for managing a global secondary index replica's read * capacity units.
*/ inline void SetProvisionedReadCapacityAutoScalingSettingsUpdate(const AutoScalingSettingsUpdate& value) { m_provisionedReadCapacityAutoScalingSettingsUpdateHasBeenSet = true; m_provisionedReadCapacityAutoScalingSettingsUpdate = value; } /** *Auto scaling settings for managing a global secondary index replica's read * capacity units.
*/ inline void SetProvisionedReadCapacityAutoScalingSettingsUpdate(AutoScalingSettingsUpdate&& value) { m_provisionedReadCapacityAutoScalingSettingsUpdateHasBeenSet = true; m_provisionedReadCapacityAutoScalingSettingsUpdate = std::move(value); } /** *Auto scaling settings for managing a global secondary index replica's read * capacity units.
*/ inline ReplicaGlobalSecondaryIndexSettingsUpdate& WithProvisionedReadCapacityAutoScalingSettingsUpdate(const AutoScalingSettingsUpdate& value) { SetProvisionedReadCapacityAutoScalingSettingsUpdate(value); return *this;} /** *Auto scaling settings for managing a global secondary index replica's read * capacity units.
*/ inline ReplicaGlobalSecondaryIndexSettingsUpdate& WithProvisionedReadCapacityAutoScalingSettingsUpdate(AutoScalingSettingsUpdate&& value) { SetProvisionedReadCapacityAutoScalingSettingsUpdate(std::move(value)); return *this;} private: Aws::String m_indexName; bool m_indexNameHasBeenSet = false; long long m_provisionedReadCapacityUnits; bool m_provisionedReadCapacityUnitsHasBeenSet = false; AutoScalingSettingsUpdate m_provisionedReadCapacityAutoScalingSettingsUpdate; bool m_provisionedReadCapacityAutoScalingSettingsUpdateHasBeenSet = false; }; } // namespace Model } // namespace DynamoDB } // namespace Aws