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

ListPipelinesRequest

import type { ListPipelinesRequest } from "https://aws-api.deno.dev/v0.4/services/sagemaker.ts?docs=full";
interface ListPipelinesRequest {
CreatedAfter?: Date | number | null;
CreatedBefore?: Date | number | null;
MaxResults?: number | null;
NextToken?: string | null;
PipelineNamePrefix?: string | null;
SortBy?: SortPipelinesBy | null;
SortOrder?: SortOrder | null;
}

§Properties

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

A filter that returns the pipelines that were created after a specified time.

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

A filter that returns the pipelines that were created before a specified time.

§
MaxResults?: number | null
[src]

The maximum number of pipelines to return in the response.

§
NextToken?: string | null
[src]

If the result of the previous ListPipelines request was truncated, the response includes a NextToken. To retrieve the next set of pipelines, use the token in the next request.

§
PipelineNamePrefix?: string | null
[src]

The prefix of the pipeline name.

§
SortBy?: SortPipelinesBy | null
[src]

The field by which to sort results. The default is CreatedTime.

§
SortOrder?: SortOrder | null
[src]

The sort order for results.