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

TypedAttributeValue

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

Represents the data for a typed attribute. You can set one, and only one, of the elements. Each attribute in an item is a name-value pair. Attributes have a single value.

interface TypedAttributeValue {
BinaryValue?: Uint8Array | string | null;
BooleanValue?: boolean | null;
DatetimeValue?: Date | number | null;
NumberValue?: string | null;
StringValue?: string | null;
}

§Properties

§
BinaryValue?: Uint8Array | string | null
[src]

A binary data value.

§
BooleanValue?: boolean | null
[src]

A Boolean data value.

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

A date and time value.

§
NumberValue?: string | null
[src]

A number data value.

§
StringValue?: string | null
[src]

A string data value.