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"; /** `GetInsightsByAssessment` request with `assessmentId` injected from the bound {@link Assessment}. */ export interface GetInsightsByAssessmentRequest extends Omit { } /** * Runtime binding for `auditmanager:GetInsightsByAssessment`. * * Gets the latest analytics data for the bound assessment. Provide the * implementation with `Effect.provide(AWS.AuditManager.GetInsightsByAssessmentHttp)`. * ### Insights * **Example:** Insights for the Bound Assessment * ```typescript * const getInsightsByAssessment = yield* AWS.AuditManager.GetInsightsByAssessment(assessment); * const result = yield* getInsightsByAssessment(); * ``` * * @binding */ export interface GetInsightsByAssessment extends Binding.Service Effect.Effect<(request?: GetInsightsByAssessmentRequest) => Effect.Effect>> { } export declare const GetInsightsByAssessment: GetInsightsByAssessment; //# sourceMappingURL=GetInsightsByAssessment.d.ts.map