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

ListModelBiasJobDefinitionsRequest

import type { ListModelBiasJobDefinitionsRequest } from "https://aws-api.deno.dev/v0.4/services/sagemaker.ts?docs=full";
interface ListModelBiasJobDefinitionsRequest {
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 bias jobs created after a specified time.

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

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

§
EndpointName?: string | null
[src]

Name of the endpoint to monitor for model bias.

§
MaxResults?: number | null
[src]

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

§
NameContains?: string | null
[src]

Filter for model bias 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.