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

SearchField

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

A Field of the channel that you want to search.

interface SearchField {
Values: string[];
}

§Properties

§

An enum value that indicates the key to search the channel on. MEMBERS allows you to search channels based on memberships. You can use it with the EQUALS operator to get channels whose memberships are equal to the specified values, and with the INCLUDES operator to get channels whose memberships include the specified values.

§

The operator used to compare field values, currently EQUALS or INCLUDES. Use the EQUALS operator to find channels whose memberships equal the specified values. Use the INCLUDES operator to find channels whose memberships include the specified values.

§
Values: string[]
[src]

The values that you want to search for, a list of strings. The values must be AppInstanceUserArns specified as a list of strings.

Note: This operation isn't supported for AppInstanceUsers with large number of memberships.