import type * as kendra from "@distilled.cloud/aws/kendra"; import type * as Effect from "effect/Effect"; import * as Binding from "../../Binding.ts"; import type { DataSource } from "./DataSource.ts"; /** * Runtime binding for the `StopDataSourceSyncJob` operation (IAM action * `kendra:StopDataSourceSyncJob`), scoped to one {@link DataSource}. * * Stops the data source's currently-running sync job, if any. * Provide the implementation with * `Effect.provide(AWS.Kendra.StopDataSourceSyncJobHttp)`. * * ### Syncing Data Sources * **Example:** Stop a Running Sync * ```typescript * const stopSync = yield* AWS.Kendra.StopDataSourceSyncJob(source); * * yield* stopSync(); * ``` * * @binding */ export interface StopDataSourceSyncJob extends Binding.Service Effect.Effect<() => Effect.Effect>> { } export declare const StopDataSourceSyncJob: StopDataSourceSyncJob; //# sourceMappingURL=StopDataSourceSyncJob.d.ts.map