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

ListReportJobsInput

import type { ListReportJobsInput } from "https://aws-api.deno.dev/v0.4/services/backup.ts?docs=full";
interface ListReportJobsInput {
ByCreationAfter?: Date | number | null;
ByCreationBefore?: Date | number | null;
ByReportPlanName?: string | null;
ByStatus?: string | null;
MaxResults?: number | null;
NextToken?: string | null;
}

§Properties

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

Returns only report jobs that were created after the date and time specified in Unix format and Coordinated Universal Time (UTC). For example, the value 1516925490 represents Friday, January 26, 2018 12:11:30 AM.

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

Returns only report jobs that were created before the date and time specified in Unix format and Coordinated Universal Time (UTC). For example, the value 1516925490 represents Friday, January 26, 2018 12:11:30 AM.

§
ByReportPlanName?: string | null
[src]

Returns only report jobs with the specified report plan name.

§
ByStatus?: string | null
[src]

Returns only report jobs that are in the specified status. The statuses are:

CREATED | RUNNING | COMPLETED | FAILED
§
MaxResults?: number | null
[src]

The number of desired results from 1 to 1000. Optional. If unspecified, the query will return 1 MB of data.

§
NextToken?: string | null
[src]

An identifier that was returned from the previous call to this operation, which can be used to return the next set of items in the list.