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

ListPipelineExecutionsRequest

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

§Properties

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

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

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

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

§
MaxResults?: number | null
[src]

The maximum number of pipeline executions to return in the response.

§
NextToken?: string | null
[src]

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

§
PipelineName: string
[src]

The name of the pipeline.

§

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

§
SortOrder?: SortOrder | null
[src]

The sort order for results.