/** *
Represents a global secondary index to be deleted from an existing table.
*/ export interface _DeleteGlobalSecondaryIndexAction { /** *The name of the global secondary index to be deleted.
*/ IndexName: string; } export declare type _UnmarshalledDeleteGlobalSecondaryIndexAction = _DeleteGlobalSecondaryIndexAction;