import { _UpdateGlobalSecondaryIndexAction, _UnmarshalledUpdateGlobalSecondaryIndexAction } from './_UpdateGlobalSecondaryIndexAction'; import { _CreateGlobalSecondaryIndexAction, _UnmarshalledCreateGlobalSecondaryIndexAction } from './_CreateGlobalSecondaryIndexAction'; import { _DeleteGlobalSecondaryIndexAction, _UnmarshalledDeleteGlobalSecondaryIndexAction } from './_DeleteGlobalSecondaryIndexAction'; /** *
Represents one of the following:
A new global secondary index to be added to an existing table.
New provisioned throughput parameters for an existing global secondary index.
An existing global secondary index to be removed from an existing table.
The name of an existing global secondary index, along with new provisioned throughput settings to be applied to that index.
*/ Update?: _UpdateGlobalSecondaryIndexAction; /** *The parameters required for creating a global secondary index on an existing table:
IndexName
KeySchema
AttributeDefinitions
Projection
ProvisionedThroughput
The name of an existing global secondary index to be removed.
*/ Delete?: _DeleteGlobalSecondaryIndexAction; } export interface _UnmarshalledGlobalSecondaryIndexUpdate extends _GlobalSecondaryIndexUpdate { /** *The name of an existing global secondary index, along with new provisioned throughput settings to be applied to that index.
*/ Update?: _UnmarshalledUpdateGlobalSecondaryIndexAction; /** *The parameters required for creating a global secondary index on an existing table:
IndexName
KeySchema
AttributeDefinitions
Projection
ProvisionedThroughput
The name of an existing global secondary index to be removed.
*/ Delete?: _UnmarshalledDeleteGlobalSecondaryIndexAction; }