Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

AttributeValue

import type { AttributeValue } from "https://aws-api-gyr5wj9zj0fg.deno.dev/v0.2/services/dynamodb.ts";
interface AttributeValue {
B?: Uint8Array | string | null;
BOOL?: boolean | null;
BS?: (Uint8Array | string)[] | null;
L?: AttributeValue[] | null;
M?: {
[key: string]: AttributeValue | null | undefined;
}
| null;
N?: string | null;
NS?: string[] | null;
NULL?: boolean | null;
S?: string | null;
SS?: string[] | null;
}

§Properties

§
B?: Uint8Array | string | null
[src]
§
BOOL?: boolean | null
[src]
§
BS?: (Uint8Array | string)[] | null
[src]
§
M?: {
[key: string]: AttributeValue | null | undefined;
}
| null
[src]
§
N?: string | null
[src]
§
NS?: string[] | null
[src]
§
NULL?: boolean | null
[src]
§
S?: string | null
[src]
§
SS?: string[] | null
[src]