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

ListModelPackagesInput

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

§Properties

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

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

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

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

§
MaxResults?: number | null
[src]

The maximum number of model packages to return in the response.

§
ModelApprovalStatus?: ModelApprovalStatus | null
[src]

A filter that returns only the model packages with the specified approval status.

§
ModelPackageGroupName?: string | null
[src]

A filter that returns only model versions that belong to the specified model group.

§
ModelPackageType?: ModelPackageType | null
[src]

A filter that returns only the model packages of the specified type. This can be one of the following values.

  • UNVERSIONED - List only unversioined models. This is the default value if no ModelPackageType is specified.
  • VERSIONED - List only versioned models.
  • BOTH - List both versioned and unversioned models.
§
NameContains?: string | null
[src]

A string in the model package name. This filter returns only model packages whose name contains the specified string.

§
NextToken?: string | null
[src]

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

§
SortBy?: ModelPackageSortBy | null
[src]

The parameter by which to sort the results. The default is CreationTime.

§
SortOrder?: SortOrder | null
[src]

The sort order for the results. The default is Ascending.