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

SearchRequest

import type { SearchRequest } from "https://aws-api.deno.dev/v0.4/services/sagemaker.ts?docs=full";
interface SearchRequest {
MaxResults?: number | null;
NextToken?: string | null;
Resource: ResourceType;
SearchExpression?: SearchExpression | null;
SortBy?: string | null;
SortOrder?: SearchSortOrder | null;
}

§Properties

§
MaxResults?: number | null
[src]

The maximum number of results to return.

§
NextToken?: string | null
[src]

If more than MaxResults resources match the specified SearchExpression, the response includes a NextToken. The NextToken can be passed to the next SearchRequest to continue retrieving results.

§

The name of the Amazon SageMaker resource to search for.

§
SearchExpression?: SearchExpression | null
[src]

A Boolean conditional statement. Resources must satisfy this condition to be included in search results. You must provide at least one subexpression, filter, or nested filter. The maximum number of recursive SubExpressions, NestedFilters, and Filters that can be included in a SearchExpression object is 50.

§
SortBy?: string | null
[src]

The name of the resource property used to sort the SearchResults. The default is LastModifiedTime.

§
SortOrder?: SearchSortOrder | null
[src]

How SearchResults are ordered. Valid values are Ascending or Descending. The default is Descending.