@aws-sdk/lib-dynamodb

BatchExecuteStatementCommandOutput TypeAlias

Full Signature

Omit<__BatchExecuteStatementCommandOutput, "Responses"> & {
    Responses?: (Omit<BatchStatementResponse, "Error" | "Item"> & {
        Error?: (Omit<BatchStatementError, "Item"> & {
            Item?: Record<string, NativeAttributeValue> | undefined
        }) | undefined;
        Item?: Record<string, NativeAttributeValue> | undefined;
    })[] | undefined;
}