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

ListCodeRepositoriesInput

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

§Properties

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

A filter that returns only Git repositories that were created after the specified time.

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

A filter that returns only Git repositories that were created before the specified time.

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

A filter that returns only Git repositories that were last modified after the specified time.

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

A filter that returns only Git repositories that were last modified before the specified time.

§
MaxResults?: number | null
[src]

The maximum number of Git repositories to return in the response.

§
NameContains?: string | null
[src]

A string in the Git repositories name. This filter returns only repositories whose name contains the specified string.

§
NextToken?: string | null
[src]

If the result of a ListCodeRepositoriesOutput request was truncated, the response includes a NextToken. To get the next set of Git repositories, use the token in the next request.

§

The field to sort results by. The default is Name.

§
SortOrder?: CodeRepositorySortOrder | null
[src]

The sort order for results. The default is Ascending.