import type * as auditmanager from "@distilled.cloud/aws/auditmanager"; import type * as Effect from "effect/Effect"; import * as Binding from "../../Binding.ts"; import type { Assessment } from "./Assessment.ts"; /** `GetEvidence` request with `assessmentId` injected from the bound {@link Assessment}. */ export interface GetEvidenceRequest extends Omit { } /** * Runtime binding for `auditmanager:GetEvidence`. * * Gets a single evidence item from the bound assessment. Provide the * implementation with `Effect.provide(AWS.AuditManager.GetEvidenceHttp)`. * ### Reading Evidence * **Example:** Get a Single Evidence Item * ```typescript * const getEvidence = yield* AWS.AuditManager.GetEvidence(assessment); * const result = yield* getEvidence({ controlSetId, evidenceFolderId, evidenceId }); * ``` * * @binding */ export interface GetEvidence extends Binding.Service Effect.Effect<(request: GetEvidenceRequest) => Effect.Effect>> { } export declare const GetEvidence: GetEvidence; //# sourceMappingURL=GetEvidence.d.ts.map