import type * as appintegrations from "@distilled.cloud/aws/appintegrations"; import type * as Effect from "effect/Effect"; import * as Binding from "../../Binding.ts"; export interface ListDataIntegrationsRequest extends appintegrations.ListDataIntegrationsRequest { } /** * Lists the AppIntegrations data integrations in the account * (`app-integrations:ListDataIntegrations`). * * An account-level operation — bind it with no resource argument. Provide the * `ListDataIntegrationsHttp` layer on the Function to satisfy the binding. * ### Listing Data Integrations * **Example:** List All Data Integrations * ```typescript * // init — no resource argument (provide AWS.AppIntegrations.ListDataIntegrationsHttp on the Function) * const listDataIntegrations = yield* AWS.AppIntegrations.ListDataIntegrations(); * * // runtime — page through the data integrations in the account * const { DataIntegrations } = yield* listDataIntegrations({}); * ``` * * @binding */ export interface ListDataIntegrations extends Binding.Service Effect.Effect<(request?: ListDataIntegrationsRequest) => Effect.Effect>> { } export declare const ListDataIntegrations: ListDataIntegrations; //# sourceMappingURL=ListDataIntegrations.d.ts.map