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

ListInferenceExperimentsRequest

import type { ListInferenceExperimentsRequest } from "https://aws-api.deno.dev/v0.4/services/sagemaker.ts?docs=full";
interface ListInferenceExperimentsRequest {
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?: InferenceExperimentStatus | null;
}

§Properties

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

Selects inference experiments which were created after this timestamp.

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

Selects inference experiments which were created before this timestamp.

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

Selects inference experiments which were last modified after this timestamp.

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

Selects inference experiments which were last modified before this timestamp.

§
MaxResults?: number | null
[src]

The maximum number of results to select.

§
NameContains?: string | null
[src]

Selects inference experiments whose names contain this name.

§
NextToken?: string | null
[src]

The response from the last list when returning a list large enough to need tokening.

§

The column by which to sort the listed inference experiments.

§
SortOrder?: SortOrder | null
[src]

The direction of sorting (ascending or descending).

§
StatusEquals?: InferenceExperimentStatus | null
[src]

Selects inference experiments which are in this status. For the possible statuses, see "DescribeInferenceExperimentResponse$Status".

§

Selects inference experiments of this type. For the possible types of inference experiments, see "CreateInferenceExperimentRequest$Type".