import type * as comprehend from "@distilled.cloud/aws/comprehend"; import type * as Effect from "effect/Effect"; import * as Binding from "../../Binding.ts"; /** * Runtime binding for `comprehend:ListEventsDetectionJobs` — list the account's * asynchronous event detection jobs, with optional status/name/time filters. * * The binding takes no arguments and grants the action on `*` (job APIs * have no resource-level IAM). * * ### Monitoring Analysis Jobs * **Example:** List Recent EventsDetection Jobs * ```typescript * // init * const listEventsDetectionJobs = yield* AWS.Comprehend.ListEventsDetectionJobs(); * * // runtime * const page = yield* listEventsDetectionJobs({ * Filter: { JobStatus: "IN_PROGRESS" }, * MaxResults: 25, * }); * // page.EventsDetectionJobPropertiesList * ``` * * @binding */ export interface ListEventsDetectionJobs extends Binding.Service Effect.Effect<(request?: comprehend.ListEventsDetectionJobsRequest) => Effect.Effect>> { } export declare const ListEventsDetectionJobs: ListEventsDetectionJobs; //# sourceMappingURL=ListEventsDetectionJobs.d.ts.map