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

TypedAttributeValueRange

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

A range of attribute values. For more information, see Range Filters.

interface TypedAttributeValueRange {
EndMode: RangeMode;
EndValue?: TypedAttributeValue | null;
StartMode: RangeMode;
StartValue?: TypedAttributeValue | null;
}

§Properties

§

The inclusive or exclusive range end.

§
EndValue?: TypedAttributeValue | null
[src]

The attribute value to terminate the range at.

§
StartMode: RangeMode
[src]

The inclusive or exclusive range start.

§
StartValue?: TypedAttributeValue | null
[src]

The value to start the range at.