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

Filter

import type { Filter } from "https://aws-api.deno.dev/v0.4/services/identitystore.ts?docs=full";

A query filter used by ListUsers and ListGroups. This filter object provides the attribute name and attribute value to search users or groups.

interface Filter {
AttributePath: string;
AttributeValue: string;
}

§Properties

§
AttributePath: string
[src]

The attribute path that is used to specify which attribute name to search. Length limit is 255 characters. For example, UserName is a valid attribute path for the ListUsers API, and DisplayName is a valid attribute path for the ListGroups API.

§
AttributeValue: string
[src]

Represents the data for an attribute. Each attribute value is described as a name-value pair.