import { _AutoScalingSettingsUpdate, _UnmarshalledAutoScalingSettingsUpdate } from './_AutoScalingSettingsUpdate'; /** *
Represents the settings of a global secondary index for a global table that will be modified.
*/ export interface _GlobalTableGlobalSecondaryIndexSettingsUpdate { /** *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 writes consumed per second before DynamoDB returns a ThrottlingException.
AutoScaling settings for managing a global secondary index's write capacity units.
*/ ProvisionedWriteCapacityAutoScalingSettingsUpdate?: _AutoScalingSettingsUpdate; } export interface _UnmarshalledGlobalTableGlobalSecondaryIndexSettingsUpdate extends _GlobalTableGlobalSecondaryIndexSettingsUpdate { /** *AutoScaling settings for managing a global secondary index's write capacity units.
*/ ProvisionedWriteCapacityAutoScalingSettingsUpdate?: _UnmarshalledAutoScalingSettingsUpdate; }