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

ListContextsRequest

import type { ListContextsRequest } from "https://aws-api.deno.dev/v0.4/services/sagemaker.ts?docs=full";
interface ListContextsRequest {
ContextType?: string | null;
CreatedAfter?: Date | number | null;
CreatedBefore?: Date | number | null;
MaxResults?: number | null;
NextToken?: string | null;
SortBy?: SortContextsBy | null;
SortOrder?: SortOrder | null;
SourceUri?: string | null;
}

§Properties

§
ContextType?: string | null
[src]

A filter that returns only contexts of the specified type.

§
CreatedAfter?: Date | number | null
[src]

A filter that returns only contexts created on or after the specified time.

§
CreatedBefore?: Date | number | null
[src]

A filter that returns only contexts created on or before the specified time.

§
MaxResults?: number | null
[src]

The maximum number of contexts to return in the response. The default value is 10.

§
NextToken?: string | null
[src]

If the previous call to ListContexts didn't return the full set of contexts, the call returns a token for getting the next set of contexts.

§
SortBy?: SortContextsBy | null
[src]

The property used to sort results. The default value is CreationTime.

§
SortOrder?: SortOrder | null
[src]

The sort order. The default value is Descending.

§
SourceUri?: string | null
[src]

A filter that returns only contexts with the specified source URI.