import { _AttributeValue } from './_AttributeValue'; import { _ExpectedAttributeValue } from './_ExpectedAttributeValue'; import { BrowserHttpOptions as __HttpOptions__ } from '@aws-sdk/types'; import * as __aws_sdk_types from '@aws-sdk/types'; /** *

Represents the input of a DeleteItem operation.

*/ export interface DeleteItemInput { /** *

The name of the table from which to delete the item.

*/ TableName: string; /** *

A map of attribute names to AttributeValue objects, representing the primary key of the item to delete.

For the primary key, you must provide all of the attributes. For example, with a simple primary key, you only need to provide a value for the partition key. For a composite primary key, you must provide values for both the partition key and the sort key.

*/ Key: { [key: string]: _AttributeValue; } | Iterable<[string, _AttributeValue]>; /** *

This is a legacy parameter. Use ConditionExpression instead. For more information, see Expected in the Amazon DynamoDB Developer Guide.

*/ Expected?: { [key: string]: _ExpectedAttributeValue; } | Iterable<[string, _ExpectedAttributeValue]>; /** *

This is a legacy parameter. Use ConditionExpression instead. For more information, see ConditionalOperator in the Amazon DynamoDB Developer Guide.

*/ ConditionalOperator?: 'AND' | 'OR' | string; /** *

Use ReturnValues if you want to get the item attributes as they appeared before they were deleted. For DeleteItem, the valid values are:

The ReturnValues parameter is used by several DynamoDB operations; however, DeleteItem does not recognize any values other than NONE or ALL_OLD.

*/ ReturnValues?: 'NONE' | 'ALL_OLD' | 'UPDATED_OLD' | 'ALL_NEW' | 'UPDATED_NEW' | string; /** *

Determines the level of detail about provisioned throughput consumption that is returned in the response:

*/ ReturnConsumedCapacity?: 'INDEXES' | 'TOTAL' | 'NONE' | string; /** *

Determines whether item collection metrics are returned. If set to SIZE, the response includes statistics about item collections, if any, that were modified during the operation are returned in the response. If set to NONE (the default), no statistics are returned.

*/ ReturnItemCollectionMetrics?: 'SIZE' | 'NONE' | string; /** *

A condition that must be satisfied in order for a conditional DeleteItem to succeed.

An expression can contain any of the following:

For more information on condition expressions, see Specifying Conditions in the Amazon DynamoDB Developer Guide.

*/ ConditionExpression?: string; /** *

One or more substitution tokens for attribute names in an expression. The following are some use cases for using ExpressionAttributeNames:

Use the # character in an expression to dereference an attribute name. For example, consider the following attribute name:

The name of this attribute conflicts with a reserved word, so it cannot be used directly in an expression. (For the complete list of reserved words, see Reserved Words in the Amazon DynamoDB Developer Guide). To work around this, you could specify the following for ExpressionAttributeNames:

You could then use this substitution in an expression, as in this example:

Tokens that begin with the : character are expression attribute values, which are placeholders for the actual value at runtime.

For more information on expression attribute names, see Accessing Item Attributes in the Amazon DynamoDB Developer Guide.

*/ ExpressionAttributeNames?: { [key: string]: string; } | Iterable<[string, string]>; /** *

One or more values that can be substituted in an expression.

Use the : (colon) character in an expression to dereference an attribute value. For example, suppose that you wanted to check whether the value of the ProductStatus attribute was one of the following:

Available | Backordered | Discontinued

You would first need to specify ExpressionAttributeValues as follows:

{ ":avail":{"S":"Available"}, ":back":{"S":"Backordered"}, ":disc":{"S":"Discontinued"} }

You could then use these values in an expression, such as this:

ProductStatus IN (:avail, :back, :disc)

For more information on expression attribute values, see Specifying Conditions in the Amazon DynamoDB Developer Guide.

*/ ExpressionAttributeValues?: { [key: string]: _AttributeValue; } | Iterable<[string, _AttributeValue]>; /** * The maximum number of times this operation should be retried. If set, this value will override the `maxRetries` configuration set on the client for this command. */ $maxRetries?: number; /** * An object that may be queried to determine if the underlying operation has been aborted. * * @see https://developer.mozilla.org/en-US/docs/Web/API/AbortSignal */ $abortSignal?: __aws_sdk_types.AbortSignal; /** * Per-request HTTP configuration options. If set, any options specified will override the corresponding HTTP option set on the client for this command. */ $httpOptions?: __HttpOptions__; }