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

ListModelExplainabilityJobDefinitionsRequest

import type { ListModelExplainabilityJobDefinitionsRequest } from "https://aws-api.deno.dev/v0.4/services/sagemaker.ts?docs=full";
interface ListModelExplainabilityJobDefinitionsRequest {
CreationTimeAfter?: Date | number | null;
CreationTimeBefore?: Date | number | null;
EndpointName?: string | null;
MaxResults?: number | null;
NameContains?: string | null;
NextToken?: string | null;
SortOrder?: SortOrder | null;
}

§Properties

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

A filter that returns only model explainability jobs created after a specified time.

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

A filter that returns only model explainability jobs created before a specified time.

§
EndpointName?: string | null
[src]

Name of the endpoint to monitor for model explainability.

§
MaxResults?: number | null
[src]

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

§
NameContains?: string | null
[src]

Filter for model explainability jobs whose name contains a specified string.

§
NextToken?: string | null
[src]

The token returned if the response is truncated. To retrieve the next set of job executions, use it in the next request.

§

Whether to sort results by the Name or CreationTime field. The default is CreationTime.

§
SortOrder?: SortOrder | null
[src]

Whether to sort the results in Ascending or Descending order. The default is Descending.