import * as Effect from "effect/Effect"; /** * Shared scaffolding for Amazon Inspector (Inspector2) HTTP bindings. * * NOT exported from `index.ts` — every thin `{Op}Http.ts` in this service is * a `Layer.effect(Cap, makeInspector2AccountHttpBinding({ … }))` over the * builder below. Everything except the operation and the IAM action list is * boilerplate. * * All Inspector2 runtime operations are account-scoped: the service's IAM * actions do not support resource-level scoping (Inspector evaluates them * against `*`), so the deploy-time half always grants `actions` on `*`. */ export declare const makeInspector2AccountHttpBinding: (options: { /** Fully-qualified binding tag, e.g. `AWS.Inspector2.ListFindings`. */ tag: string; /** The distilled operation, invoked with the caller's request as-is. */ operation: Effect.Effect<(input: I) => Effect.Effect, never, R>; /** IAM actions granted on `*`. */ actions: readonly string[]; }) => Effect.Effect<() => Effect.Effect<(request?: I | undefined) => Effect.Effect, never, never>, never, R>; //# sourceMappingURL=BindingHttp.d.ts.map