import type * as qbusiness from "@distilled.cloud/aws/qbusiness"; import type * as Effect from "effect/Effect"; import * as Binding from "../../Binding.ts"; import type { Application } from "./Application.ts"; /** * `DeleteAttachment` request with `applicationId` injected from the bound application. */ export interface DeleteAttachmentRequest extends Omit { } /** * Runtime binding for the `DeleteAttachment` operation (IAM action * `qbusiness:DeleteAttachment`), scoped to one {@link Application}. * * Deletes an attachment associated with a chat conversation. * Provide the implementation with * `Effect.provide(AWS.QBusiness.DeleteAttachmentHttp)`. * * ### Conversations * **Example:** Delete an Attachment * ```typescript * const deleteAttachment = yield* AWS.QBusiness.DeleteAttachment(app); * * yield* deleteAttachment({ conversationId, attachmentId }); * ``` * * @binding */ export interface DeleteAttachment extends Binding.Service Effect.Effect<(request: DeleteAttachmentRequest) => Effect.Effect>> { } export declare const DeleteAttachment: DeleteAttachment; //# sourceMappingURL=DeleteAttachment.d.ts.map