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

SearchCasesRequest

import type { SearchCasesRequest } from "https://aws-api.deno.dev/v0.4/services/connectcases.ts?docs=full";
interface SearchCasesRequest {
domainId: string;
fields?: FieldIdentifier[] | null;
filter?: CaseFilter | null;
maxResults?: number | null;
nextToken?: string | null;
searchTerm?: string | null;
sorts?: Sort[] | null;
}

§Properties

§
domainId: string
[src]

The unique identifier of the Cases domain.

§
fields?: FieldIdentifier[] | null
[src]

The list of field identifiers to be returned as part of the response.

§
filter?: CaseFilter | null
[src]

A list of filter objects.

§
maxResults?: number | null
[src]

The maximum number of cases to return. The current maximum supported value is 25. This is also the default value when no other value is provided.

§
nextToken?: string | null
[src]

The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.

§
searchTerm?: string | null
[src]

A word or phrase used to perform a quick search.

§
sorts?: Sort[] | null
[src]

A list of sorts where each sort specifies a field and their sort order to be applied to the results.