/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace DynamoDB { namespace Model { /** *

Represents the settings of a global secondary index for a global table that * will be modified.

See Also:

AWS * API Reference

*/ class GlobalTableGlobalSecondaryIndexSettingsUpdate { public: AWS_DYNAMODB_API GlobalTableGlobalSecondaryIndexSettingsUpdate(); AWS_DYNAMODB_API GlobalTableGlobalSecondaryIndexSettingsUpdate(Aws::Utils::Json::JsonView jsonValue); AWS_DYNAMODB_API GlobalTableGlobalSecondaryIndexSettingsUpdate& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_DYNAMODB_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

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 GlobalTableGlobalSecondaryIndexSettingsUpdate& 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 GlobalTableGlobalSecondaryIndexSettingsUpdate& 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 GlobalTableGlobalSecondaryIndexSettingsUpdate& WithIndexName(const char* value) { SetIndexName(value); return *this;} /** *

The maximum number of writes consumed per second before DynamoDB returns a * ThrottlingException.

*/ inline long long GetProvisionedWriteCapacityUnits() const{ return m_provisionedWriteCapacityUnits; } /** *

The maximum number of writes consumed per second before DynamoDB returns a * ThrottlingException.

*/ inline bool ProvisionedWriteCapacityUnitsHasBeenSet() const { return m_provisionedWriteCapacityUnitsHasBeenSet; } /** *

The maximum number of writes consumed per second before DynamoDB returns a * ThrottlingException.

*/ inline void SetProvisionedWriteCapacityUnits(long long value) { m_provisionedWriteCapacityUnitsHasBeenSet = true; m_provisionedWriteCapacityUnits = value; } /** *

The maximum number of writes consumed per second before DynamoDB returns a * ThrottlingException.

*/ inline GlobalTableGlobalSecondaryIndexSettingsUpdate& WithProvisionedWriteCapacityUnits(long long value) { SetProvisionedWriteCapacityUnits(value); return *this;} /** *

Auto scaling settings for managing a global secondary index's write capacity * units.

*/ inline const AutoScalingSettingsUpdate& GetProvisionedWriteCapacityAutoScalingSettingsUpdate() const{ return m_provisionedWriteCapacityAutoScalingSettingsUpdate; } /** *

Auto scaling settings for managing a global secondary index's write capacity * units.

*/ inline bool ProvisionedWriteCapacityAutoScalingSettingsUpdateHasBeenSet() const { return m_provisionedWriteCapacityAutoScalingSettingsUpdateHasBeenSet; } /** *

Auto scaling settings for managing a global secondary index's write capacity * units.

*/ inline void SetProvisionedWriteCapacityAutoScalingSettingsUpdate(const AutoScalingSettingsUpdate& value) { m_provisionedWriteCapacityAutoScalingSettingsUpdateHasBeenSet = true; m_provisionedWriteCapacityAutoScalingSettingsUpdate = value; } /** *

Auto scaling settings for managing a global secondary index's write capacity * units.

*/ inline void SetProvisionedWriteCapacityAutoScalingSettingsUpdate(AutoScalingSettingsUpdate&& value) { m_provisionedWriteCapacityAutoScalingSettingsUpdateHasBeenSet = true; m_provisionedWriteCapacityAutoScalingSettingsUpdate = std::move(value); } /** *

Auto scaling settings for managing a global secondary index's write capacity * units.

*/ inline GlobalTableGlobalSecondaryIndexSettingsUpdate& WithProvisionedWriteCapacityAutoScalingSettingsUpdate(const AutoScalingSettingsUpdate& value) { SetProvisionedWriteCapacityAutoScalingSettingsUpdate(value); return *this;} /** *

Auto scaling settings for managing a global secondary index's write capacity * units.

*/ inline GlobalTableGlobalSecondaryIndexSettingsUpdate& WithProvisionedWriteCapacityAutoScalingSettingsUpdate(AutoScalingSettingsUpdate&& value) { SetProvisionedWriteCapacityAutoScalingSettingsUpdate(std::move(value)); return *this;} private: Aws::String m_indexName; bool m_indexNameHasBeenSet = false; long long m_provisionedWriteCapacityUnits; bool m_provisionedWriteCapacityUnitsHasBeenSet = false; AutoScalingSettingsUpdate m_provisionedWriteCapacityAutoScalingSettingsUpdate; bool m_provisionedWriteCapacityAutoScalingSettingsUpdateHasBeenSet = false; }; } // namespace Model } // namespace DynamoDB } // namespace Aws