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

ListEndpointsInput

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

§Properties

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

A filter that returns only endpoints with a creation time greater than or equal to the specified time (timestamp).

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

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

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

A filter that returns only endpoints that were modified after the specified timestamp.

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

A filter that returns only endpoints that were modified before the specified timestamp.

§
MaxResults?: number | null
[src]

The maximum number of endpoints to return in the response. This value defaults to 10.

§
NameContains?: string | null
[src]

A string in endpoint names. This filter returns only endpoints whose name contains the specified string.

§
NextToken?: string | null
[src]

If the result of a ListEndpoints request was truncated, the response includes a NextToken. To retrieve the next set of endpoints, use the token in the next request.

§
SortBy?: EndpointSortKey | null
[src]

Sorts the list of results. The default is CreationTime.

§
SortOrder?: OrderKey | null
[src]

The sort order for results. The default is Descending.

§
StatusEquals?: EndpointStatus | null
[src]

A filter that returns only endpoints with the specified status.