import { _AutoScalingSettingsUpdate, _UnmarshalledAutoScalingSettingsUpdate } from './_AutoScalingSettingsUpdate'; /** *

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

*/ export interface _ReplicaGlobalSecondaryIndexSettingsUpdate { /** *

The name of the global secondary index. The name must be unique among all other indexes on this table.

*/ IndexName: string; /** *

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

*/ ProvisionedReadCapacityUnits?: number; /** *

Autoscaling settings for managing a global secondary index replica's read capacity units.

*/ ProvisionedReadCapacityAutoScalingSettingsUpdate?: _AutoScalingSettingsUpdate; } export interface _UnmarshalledReplicaGlobalSecondaryIndexSettingsUpdate extends _ReplicaGlobalSecondaryIndexSettingsUpdate { /** *

Autoscaling settings for managing a global secondary index replica's read capacity units.

*/ ProvisionedReadCapacityAutoScalingSettingsUpdate?: _UnmarshalledAutoScalingSettingsUpdate; }