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

ListInferenceRecommendationsJobsRequest

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

§Properties

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

A filter that returns only jobs created after the specified time (timestamp).

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

A filter that returns only jobs created before the specified time (timestamp).

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

A filter that returns only jobs that were last modified after the specified time (timestamp).

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

A filter that returns only jobs that were last modified before the specified time (timestamp).

§
MaxResults?: number | null
[src]

The maximum number of recommendations to return in the response.

§
NameContains?: string | null
[src]

A string in the job name. This filter returns only recommendations whose name contains the specified string.

§
NextToken?: string | null
[src]

If the response to a previous ListInferenceRecommendationsJobsRequest request was truncated, the response includes a NextToken. To retrieve the next set of recommendations, use the token in the next request.

§

The parameter by which to sort the results.

§
SortOrder?: SortOrder | null
[src]

The sort order for the results.

§
StatusEquals?: RecommendationJobStatus | null
[src]

A filter that retrieves only inference recommendations jobs with a specific status.