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

ListHubContentsRequest

import type { ListHubContentsRequest } from "https://aws-api.deno.dev/v0.4/services/sagemaker.ts?docs=full";
interface ListHubContentsRequest {
CreationTimeAfter?: Date | number | null;
CreationTimeBefore?: Date | number | null;
HubContentType: HubContentType;
HubName: string;
MaxResults?: number | null;
MaxSchemaVersion?: string | null;
NameContains?: string | null;
NextToken?: string | null;
SortBy?: HubContentSortBy | null;
SortOrder?: SortOrder | null;
}

§Properties

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

Only list hub content that was created after the time specified.

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

Only list hub content that was created before the time specified.

§
HubContentType: HubContentType
[src]

The type of hub content to list.

§
HubName: string
[src]

The name of the hub to list the contents of.

§
MaxResults?: number | null
[src]

The maximum amount of hub content to list.

§
MaxSchemaVersion?: string | null
[src]

The upper bound of the hub content schema verion.

§
NameContains?: string | null
[src]

Only list hub content if the name contains the specified string.

§
NextToken?: string | null
[src]

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

§
SortBy?: HubContentSortBy | null
[src]

Sort hub content versions by either name or creation time.

§
SortOrder?: SortOrder | null
[src]

Sort hubs by ascending or descending order.