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

ListHubContentVersionsRequest

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

§Properties

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

Only list hub content versions that were created after the time specified.

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

Only list hub content versions that were created before the time specified.

§
HubContentName: string
[src]

The name of the hub content.

§
HubContentType: HubContentType
[src]

The type of hub content to list versions of.

§
HubName: string
[src]

The name of the hub to list the content versions of.

§
MaxResults?: number | null
[src]

The maximum number of hub content versions to list.

§
MaxSchemaVersion?: string | null
[src]

The upper bound of the hub content schema version.

§
MinVersion?: string | null
[src]

The lower bound of the hub content versions to list.

§
NextToken?: string | null
[src]

If the response to a previous ListHubContentVersions request was truncated, the response includes a NextToken. To retrieve the next set of hub content versions, 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 hub content versions by ascending or descending order.