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

ListHubsRequest

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

§Properties

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

Only list hubs that were created after the time specified.

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

Only list hubs that were created before the time specified.

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

Only list hubs that were last modified after the time specified.

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

Only list hubs that were last modified before the time specified.

§
MaxResults?: number | null
[src]

The maximum number of hubs to list.

§
NameContains?: string | null
[src]

Only list hubs with names that contain the specified string.

§
NextToken?: string | null
[src]

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

§
SortBy?: HubSortBy | null
[src]

Sort hubs by either name or creation time.

§
SortOrder?: SortOrder | null
[src]

Sort hubs by ascending or descending order.