import { _ProvisionedThroughput, _UnmarshalledProvisionedThroughput } from './_ProvisionedThroughput'; /** *

Represents the new provisioned throughput settings to be applied to a global secondary index.

*/ export interface _UpdateGlobalSecondaryIndexAction { /** *

The name of the global secondary index to be updated.

*/ IndexName: string; /** *

Represents the provisioned throughput settings for the specified global secondary index.

For current minimum and maximum provisioned throughput values, see Limits in the Amazon DynamoDB Developer Guide.

*/ ProvisionedThroughput: _ProvisionedThroughput; } export interface _UnmarshalledUpdateGlobalSecondaryIndexAction extends _UpdateGlobalSecondaryIndexAction { /** *

Represents the provisioned throughput settings for the specified global secondary index.

For current minimum and maximum provisioned throughput values, see Limits in the Amazon DynamoDB Developer Guide.

*/ ProvisionedThroughput: _UnmarshalledProvisionedThroughput; }