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

ListMonitoringExecutionsRequest

import type { ListMonitoringExecutionsRequest } from "https://aws-api.deno.dev/v0.4/services/sagemaker.ts?docs=full";
interface ListMonitoringExecutionsRequest {
CreationTimeAfter?: Date | number | null;
CreationTimeBefore?: Date | number | null;
EndpointName?: string | null;
LastModifiedTimeAfter?: Date | number | null;
LastModifiedTimeBefore?: Date | number | null;
MaxResults?: number | null;
MonitoringJobDefinitionName?: string | null;
MonitoringScheduleName?: string | null;
MonitoringTypeEquals?: MonitoringType | null;
NextToken?: string | null;
ScheduledTimeAfter?: Date | number | null;
ScheduledTimeBefore?: Date | number | null;
SortOrder?: SortOrder | null;
StatusEquals?: ExecutionStatus | null;
}

§Properties

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

A filter that returns only jobs created after a specified time.

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

A filter that returns only jobs created before a specified time.

§
EndpointName?: string | null
[src]

Name of a specific endpoint to fetch jobs for.

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

A filter that returns only jobs modified before a specified time.

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

A filter that returns only jobs modified after a specified time.

§
MaxResults?: number | null
[src]

The maximum number of jobs to return in the response. The default value is 10.

§
MonitoringJobDefinitionName?: string | null
[src]

Gets a list of the monitoring job runs of the specified monitoring job definitions.

§
MonitoringScheduleName?: string | null
[src]

Name of a specific schedule to fetch jobs for.

§
MonitoringTypeEquals?: MonitoringType | null
[src]

A filter that returns only the monitoring job runs of the specified monitoring type.

§
NextToken?: string | null
[src]

The token returned if the response is truncated. To retrieve the next set of job executions, use it in the next request.

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

Filter for jobs scheduled after a specified time.

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

Filter for jobs scheduled before a specified time.

§

Whether to sort results by Status, CreationTime, ScheduledTime field. The default is CreationTime.

§
SortOrder?: SortOrder | null
[src]

Whether to sort the results in Ascending or Descending order. The default is Descending.

§
StatusEquals?: ExecutionStatus | null
[src]

A filter that retrieves only jobs with a specific status.