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:ListSentimentDetectionJobs` — list the account's * asynchronous sentiment 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 SentimentDetection Jobs * ```typescript * // init * const listSentimentDetectionJobs = yield* AWS.Comprehend.ListSentimentDetectionJobs(); * * // runtime * const page = yield* listSentimentDetectionJobs({ * Filter: { JobStatus: "IN_PROGRESS" }, * MaxResults: 25, * }); * // page.SentimentDetectionJobPropertiesList * ``` * * @binding */ export interface ListSentimentDetectionJobs extends Binding.Service Effect.Effect<(request?: comprehend.ListSentimentDetectionJobsRequest) => Effect.Effect>> { } export declare const ListSentimentDetectionJobs: ListSentimentDetectionJobs; //# sourceMappingURL=ListSentimentDetectionJobs.d.ts.map