UNPKG

@nova-odm/expressions

Version:

Composable expression objects for Amazon DynamoDB

13 lines (12 loc) 561 B
import { AttributeValue as BaseAttributeValue } from '@aws-sdk/client-dynamodb'; /** * An object containing an already-marshalled DynamoDB AttributeValue. * Intended to allow marshalled AttributeValues to be identified as such * and distinguished from maps that resemble marshalled values. */ export declare class AttributeValue { readonly marshalled: BaseAttributeValue; readonly [Symbol.toStringTag] = "AmazonDynamoDbAttributeValue"; constructor(marshalled: BaseAttributeValue); static isAttributeValue(arg: any): arg is AttributeValue; }