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

Represents the properties of a global secondary index.

See * Also:

AWS * API Reference

*/ class ReplicaGlobalSecondaryIndexSettingsDescription { public: AWS_DYNAMODB_API ReplicaGlobalSecondaryIndexSettingsDescription(); AWS_DYNAMODB_API ReplicaGlobalSecondaryIndexSettingsDescription(Aws::Utils::Json::JsonView jsonValue); AWS_DYNAMODB_API ReplicaGlobalSecondaryIndexSettingsDescription& 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 ReplicaGlobalSecondaryIndexSettingsDescription& 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 ReplicaGlobalSecondaryIndexSettingsDescription& 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 ReplicaGlobalSecondaryIndexSettingsDescription& WithIndexName(const char* value) { SetIndexName(value); return *this;} /** *

The current status of the global secondary index:

  • * CREATING - The global secondary index is being created.

  • *
  • UPDATING - The global secondary index is being * updated.

  • DELETING - The global secondary index * is being deleted.

  • ACTIVE - The global secondary * index is ready for use.

*/ inline const IndexStatus& GetIndexStatus() const{ return m_indexStatus; } /** *

The current status of the global secondary index:

  • * CREATING - The global secondary index is being created.

  • *
  • UPDATING - The global secondary index is being * updated.

  • DELETING - The global secondary index * is being deleted.

  • ACTIVE - The global secondary * index is ready for use.

*/ inline bool IndexStatusHasBeenSet() const { return m_indexStatusHasBeenSet; } /** *

The current status of the global secondary index:

  • * CREATING - The global secondary index is being created.

  • *
  • UPDATING - The global secondary index is being * updated.

  • DELETING - The global secondary index * is being deleted.

  • ACTIVE - The global secondary * index is ready for use.

*/ inline void SetIndexStatus(const IndexStatus& value) { m_indexStatusHasBeenSet = true; m_indexStatus = value; } /** *

The current status of the global secondary index:

  • * CREATING - The global secondary index is being created.

  • *
  • UPDATING - The global secondary index is being * updated.

  • DELETING - The global secondary index * is being deleted.

  • ACTIVE - The global secondary * index is ready for use.

*/ inline void SetIndexStatus(IndexStatus&& value) { m_indexStatusHasBeenSet = true; m_indexStatus = std::move(value); } /** *

The current status of the global secondary index:

  • * CREATING - The global secondary index is being created.

  • *
  • UPDATING - The global secondary index is being * updated.

  • DELETING - The global secondary index * is being deleted.

  • ACTIVE - The global secondary * index is ready for use.

*/ inline ReplicaGlobalSecondaryIndexSettingsDescription& WithIndexStatus(const IndexStatus& value) { SetIndexStatus(value); return *this;} /** *

The current status of the global secondary index:

  • * CREATING - The global secondary index is being created.

  • *
  • UPDATING - The global secondary index is being * updated.

  • DELETING - The global secondary index * is being deleted.

  • ACTIVE - The global secondary * index is ready for use.

*/ inline ReplicaGlobalSecondaryIndexSettingsDescription& WithIndexStatus(IndexStatus&& value) { SetIndexStatus(std::move(value)); return *this;} /** *

The maximum number of strongly consistent reads consumed per second before * DynamoDB returns a ThrottlingException.

*/ inline long long GetProvisionedReadCapacityUnits() const{ return m_provisionedReadCapacityUnits; } /** *

The maximum number of strongly consistent reads consumed per second before * DynamoDB returns a ThrottlingException.

*/ inline bool ProvisionedReadCapacityUnitsHasBeenSet() const { return m_provisionedReadCapacityUnitsHasBeenSet; } /** *

The maximum number of strongly consistent reads consumed per second before * DynamoDB returns a ThrottlingException.

*/ inline void SetProvisionedReadCapacityUnits(long long value) { m_provisionedReadCapacityUnitsHasBeenSet = true; m_provisionedReadCapacityUnits = value; } /** *

The maximum number of strongly consistent reads consumed per second before * DynamoDB returns a ThrottlingException.

*/ inline ReplicaGlobalSecondaryIndexSettingsDescription& WithProvisionedReadCapacityUnits(long long value) { SetProvisionedReadCapacityUnits(value); return *this;} /** *

Auto scaling settings for a global secondary index replica's read capacity * units.

*/ inline const AutoScalingSettingsDescription& GetProvisionedReadCapacityAutoScalingSettings() const{ return m_provisionedReadCapacityAutoScalingSettings; } /** *

Auto scaling settings for a global secondary index replica's read capacity * units.

*/ inline bool ProvisionedReadCapacityAutoScalingSettingsHasBeenSet() const { return m_provisionedReadCapacityAutoScalingSettingsHasBeenSet; } /** *

Auto scaling settings for a global secondary index replica's read capacity * units.

*/ inline void SetProvisionedReadCapacityAutoScalingSettings(const AutoScalingSettingsDescription& value) { m_provisionedReadCapacityAutoScalingSettingsHasBeenSet = true; m_provisionedReadCapacityAutoScalingSettings = value; } /** *

Auto scaling settings for a global secondary index replica's read capacity * units.

*/ inline void SetProvisionedReadCapacityAutoScalingSettings(AutoScalingSettingsDescription&& value) { m_provisionedReadCapacityAutoScalingSettingsHasBeenSet = true; m_provisionedReadCapacityAutoScalingSettings = std::move(value); } /** *

Auto scaling settings for a global secondary index replica's read capacity * units.

*/ inline ReplicaGlobalSecondaryIndexSettingsDescription& WithProvisionedReadCapacityAutoScalingSettings(const AutoScalingSettingsDescription& value) { SetProvisionedReadCapacityAutoScalingSettings(value); return *this;} /** *

Auto scaling settings for a global secondary index replica's read capacity * units.

*/ inline ReplicaGlobalSecondaryIndexSettingsDescription& WithProvisionedReadCapacityAutoScalingSettings(AutoScalingSettingsDescription&& value) { SetProvisionedReadCapacityAutoScalingSettings(std::move(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 ReplicaGlobalSecondaryIndexSettingsDescription& WithProvisionedWriteCapacityUnits(long long value) { SetProvisionedWriteCapacityUnits(value); return *this;} /** *

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

*/ inline const AutoScalingSettingsDescription& GetProvisionedWriteCapacityAutoScalingSettings() const{ return m_provisionedWriteCapacityAutoScalingSettings; } /** *

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

*/ inline bool ProvisionedWriteCapacityAutoScalingSettingsHasBeenSet() const { return m_provisionedWriteCapacityAutoScalingSettingsHasBeenSet; } /** *

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

*/ inline void SetProvisionedWriteCapacityAutoScalingSettings(const AutoScalingSettingsDescription& value) { m_provisionedWriteCapacityAutoScalingSettingsHasBeenSet = true; m_provisionedWriteCapacityAutoScalingSettings = value; } /** *

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

*/ inline void SetProvisionedWriteCapacityAutoScalingSettings(AutoScalingSettingsDescription&& value) { m_provisionedWriteCapacityAutoScalingSettingsHasBeenSet = true; m_provisionedWriteCapacityAutoScalingSettings = std::move(value); } /** *

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

*/ inline ReplicaGlobalSecondaryIndexSettingsDescription& WithProvisionedWriteCapacityAutoScalingSettings(const AutoScalingSettingsDescription& value) { SetProvisionedWriteCapacityAutoScalingSettings(value); return *this;} /** *

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

*/ inline ReplicaGlobalSecondaryIndexSettingsDescription& WithProvisionedWriteCapacityAutoScalingSettings(AutoScalingSettingsDescription&& value) { SetProvisionedWriteCapacityAutoScalingSettings(std::move(value)); return *this;} private: Aws::String m_indexName; bool m_indexNameHasBeenSet = false; IndexStatus m_indexStatus; bool m_indexStatusHasBeenSet = false; long long m_provisionedReadCapacityUnits; bool m_provisionedReadCapacityUnitsHasBeenSet = false; AutoScalingSettingsDescription m_provisionedReadCapacityAutoScalingSettings; bool m_provisionedReadCapacityAutoScalingSettingsHasBeenSet = false; long long m_provisionedWriteCapacityUnits; bool m_provisionedWriteCapacityUnitsHasBeenSet = false; AutoScalingSettingsDescription m_provisionedWriteCapacityAutoScalingSettings; bool m_provisionedWriteCapacityAutoScalingSettingsHasBeenSet = false; }; } // namespace Model } // namespace DynamoDB } // namespace Aws