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

ListArtifactsRequest

import type { ListArtifactsRequest } from "https://aws-api.deno.dev/v0.4/services/sagemaker.ts?docs=full";
interface ListArtifactsRequest {
ArtifactType?: string | null;
CreatedAfter?: Date | number | null;
CreatedBefore?: Date | number | null;
MaxResults?: number | null;
NextToken?: string | null;
SortBy?: SortArtifactsBy | null;
SortOrder?: SortOrder | null;
SourceUri?: string | null;
}

§Properties

§
ArtifactType?: string | null
[src]

A filter that returns only artifacts of the specified type.

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

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

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

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

§
MaxResults?: number | null
[src]

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

§
NextToken?: string | null
[src]

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

§
SortBy?: SortArtifactsBy | null
[src]

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

§
SortOrder?: SortOrder | null
[src]

The sort order. The default value is Descending.

§
SourceUri?: string | null
[src]

A filter that returns only artifacts with the specified source URI.