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

DocumentAttributeValue

import type { DocumentAttributeValue } from "https://aws-api.deno.dev/v0.3/services/kendra.ts?docs=full";

The value of a custom document attribute. You can only provide one value for a custom attribute.

interface DocumentAttributeValue {
DateValue?: Date | number | null;
LongValue?: number | null;
StringListValue?: string[] | null;
StringValue?: string | null;
}

§Properties

§
DateValue?: Date | number | null
[src]

A date expressed as an ISO 8601 string.

It is important for the time zone to be included in the ISO 8601 date-time format. For example, 2012-03-25T12:30:10+01:00 is the ISO 8601 date-time format for March 25th 2012 at 12:30PM (plus 10 seconds) in Central European Time.

§
LongValue?: number | null
[src]

A long integer value.

§
StringListValue?: string[] | null
[src]

A list of strings.

§
StringValue?: string | null
[src]

A string, such as "department".