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

ListAppsRequest

import type { ListAppsRequest } from "https://aws-api.deno.dev/v0.4/services/sagemaker.ts?docs=full";
interface ListAppsRequest {
DomainIdEquals?: string | null;
MaxResults?: number | null;
NextToken?: string | null;
SortBy?: AppSortKey | null;
SortOrder?: SortOrder | null;
SpaceNameEquals?: string | null;
UserProfileNameEquals?: string | null;
}

§Properties

§
DomainIdEquals?: string | null
[src]

A parameter to search for the domain ID.

§
MaxResults?: number | null
[src]

Returns a list up to a specified limit.

§
NextToken?: string | null
[src]

If the previous response was truncated, you will receive this token. Use it in your next request to receive the next set of results.

§
SortBy?: AppSortKey | 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.

§
SpaceNameEquals?: string | null
[src]

A parameter to search by space name. If UserProfileNameEquals is set, then this value cannot be set.

§
UserProfileNameEquals?: string | null
[src]

A parameter to search by user profile name. If SpaceNameEquals is set, then this value cannot be set.