import { DeleteItemCommand as __DeleteItemCommand } from "@aws-sdk/client-dynamodb"; import { Command as $Command } from "@smithy/core/client"; import type { Handler, MiddlewareStack } from "@smithy/types"; import { type HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; import { DynamoDBDocumentClientCommand } from "../baseCommand/DynamoDBDocumentClientCommand"; import type { DynamoDBDocumentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBDocumentClient"; /** * @public */ export { DynamoDBDocumentClientCommand, $Command }; /** * @public */ export type DeleteCommandInput = Omit<__DeleteItemCommandInput, "Key" | "Expected" | "ExpressionAttributeValues"> & { Key: Record | undefined; Expected?: Record & { Value?: NativeAttributeValue | undefined; AttributeValueList?: NativeAttributeValue[] | undefined; }> | undefined; ExpressionAttributeValues?: Record | undefined; }; /** * @public */ export type DeleteCommandOutput = Omit<__DeleteItemCommandOutput, "Attributes" | "ItemCollectionMetrics"> & { Attributes?: Record | undefined; ItemCollectionMetrics?: (Omit & { ItemCollectionKey?: Record | undefined; }) | undefined; }; /** * Accepts native JavaScript types instead of `AttributeValue`s, and calls * DeleteItemCommand operation from {@link @aws-sdk/client-dynamodb#DeleteItemCommand}. * * JavaScript objects passed in as parameters are marshalled into `AttributeValue` shapes * required by Amazon DynamoDB. Responses from DynamoDB are unmarshalled into plain JavaScript objects. * * @public */ export declare class DeleteCommand extends DynamoDBDocumentClientCommand { readonly input: DeleteCommandInput; protected readonly inputKeyNodes: { Key: import("../commands/utils").KeyNodeChildren; Expected: { "*": { Value: null; AttributeValueList: import("../commands/utils").KeyNodeChildren; }; }; ExpressionAttributeValues: import("../commands/utils").KeyNodeChildren; }; protected readonly outputKeyNodes: { Attributes: import("../commands/utils").KeyNodeChildren; ItemCollectionMetrics: { ItemCollectionKey: import("../commands/utils").KeyNodeChildren; }; }; protected readonly clientCommand: __DeleteItemCommand; readonly middlewareStack: MiddlewareStack; constructor(input: DeleteCommandInput); /** * @internal */ resolveMiddleware(clientStack: MiddlewareStack, configuration: DynamoDBDocumentClientResolvedConfig, options?: __HttpHandlerOptions): Handler; } import type { DeleteItemCommandInput as __DeleteItemCommandInput, DeleteItemCommandOutput as __DeleteItemCommandOutput, ExpectedAttributeValue, ItemCollectionMetrics } from "@aws-sdk/client-dynamodb"; import type { NativeAttributeValue } from "@aws-sdk/util-dynamodb";