import * as Effect from "effect/Effect"; import type { DeliveryStream } from "./DeliveryStream.ts"; /** * Shared scaffolding for AWS Firehose HTTP bindings. * * NOT exported from `index.ts` — every near-identical `{Op}Http.ts` in this * service is a thin `Layer.effect(Cap, make…HttpBinding({ … }))` over one of * the builders below. Everything except the operation, the IAM action list, * and the granted ARNs is boilerplate. Genuinely-different bindings (the * batched `DeliveryStreamSink`) stay bespoke. */ /** * Build the impl Effect for a delivery-stream-scoped operation * (`PutRecord`, `PutRecordBatch`): the runtime callable injects the bound * {@link DeliveryStream}'s physical name as `DeliveryStreamName` and the * deploy-time half grants `actions` on the delivery stream's ARN. */ export declare const makeDeliveryStreamHttpBinding: (options: { /** Fully-qualified binding tag, e.g. `AWS.Firehose.PutRecord`. */ tag: string; /** The distilled operation; `DeliveryStreamName` is injected. */ operation: Effect.Effect<(input: I) => Effect.Effect, never, R>; /** IAM actions granted on the delivery stream ARN. */ actions: readonly string[]; }) => Effect.Effect<(deliveryStream: DeliveryStream) => Effect.Effect<(request: Omit) => Effect.Effect, never, never>, never, R>; /** * Build the impl Effect for an account-level operation * (`ListDeliveryStreams`): the runtime callable passes the caller's request * through unchanged and the deploy-time half grants `actions` on `*` * (these Firehose actions do not support resource-level permissions). */ export declare const makeFirehoseAccountHttpBinding: (options: { /** Fully-qualified binding tag, e.g. `AWS.Firehose.ListDeliveryStreams`. */ 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