import type * as ssm from "@distilled.cloud/aws/ssm-contacts"; import type * as Effect from "effect/Effect"; import * as Binding from "../../Binding.ts"; import type { Contact } from "./Contact.ts"; /** * Runtime binding for `ssm-contacts:ListPagesByContact`. * * List the pages (individual engagement deliveries) sent to the bound * contact. The contact's ARN is injected as `ContactId`. * Provide the implementation with * `Effect.provide(AWS.SSMContacts.ListPagesByContactHttp)`. * ### Working with Pages * **Example:** List Pages Sent to a Contact * ```typescript * const listPagesByContact = yield* AWS.SSMContacts.ListPagesByContact(oncall); * * const { Pages } = yield* listPagesByContact(); * ``` * * @binding */ export interface ListPagesByContact extends Binding.Service Effect.Effect<(request?: Omit) => Effect.Effect>> { } export declare const ListPagesByContact: ListPagesByContact; //# sourceMappingURL=ListPagesByContact.d.ts.map