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

ListImagesRequest

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

§Properties

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

A filter that returns only images created on or after the specified time.

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

A filter that returns only images created on or before the specified time.

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

A filter that returns only images modified on or after the specified time.

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

A filter that returns only images modified on or before the specified time.

§
MaxResults?: number | null
[src]

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

§
NameContains?: string | null
[src]

A filter that returns only images whose name contains the specified string.

§
NextToken?: string | null
[src]

If the previous call to ListImages didn't return the full set of images, the call returns a token for getting the next set of images.

§
SortBy?: ImageSortBy | null
[src]

The property used to sort results. The default value is CREATION_TIME.

§
SortOrder?: ImageSortOrder | null
[src]

The sort order. The default value is DESCENDING.