import type * as iotdata from "@distilled.cloud/aws/iot-data-plane"; import type * as Effect from "effect/Effect"; import * as Binding from "../../Binding.ts"; import type { Thing } from "./Thing.ts"; export interface ListNamedShadowsForThingRequest extends Omit { } /** * Runtime binding for the IoT data-plane `ListNamedShadowsForThing` * operation (IAM action `iot:ListNamedShadowsForThing`). * * Bind it to a {@link Thing} to list the thing's named shadows — the thing * name is injected automatically. Provide the implementation with * `Effect.provide(AWS.IoT.ListNamedShadowsForThingHttp)`. * ### Device Shadows * **Example:** List Named Shadows * ```typescript * const listShadows = yield* AWS.IoT.ListNamedShadowsForThing(thing); * * const { results } = yield* listShadows(); * ``` * * @binding */ export interface ListNamedShadowsForThing extends Binding.Service Effect.Effect<(request?: ListNamedShadowsForThingRequest) => Effect.Effect>> { } export declare const ListNamedShadowsForThing: ListNamedShadowsForThing; //# sourceMappingURL=ListNamedShadowsForThing.d.ts.map