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 DeleteThingShadowRequest extends Omit { } /** * Runtime binding for the IoT data-plane `DeleteThingShadow` operation (IAM * action `iot:DeleteThingShadow`). * * Bind it to a {@link Thing} to delete the thing's device shadow — the thing * name is injected automatically. Provide the implementation with * `Effect.provide(AWS.IoT.DeleteThingShadowHttp)`. * ### Device Shadows * **Example:** Delete a Named Shadow * ```typescript * const deleteShadow = yield* AWS.IoT.DeleteThingShadow(thing); * * yield* deleteShadow({ shadowName: "telemetry" }); * ``` * * @binding */ export interface DeleteThingShadow extends Binding.Service Effect.Effect<(request?: DeleteThingShadowRequest) => Effect.Effect>> { } export declare const DeleteThingShadow: DeleteThingShadow; //# sourceMappingURL=DeleteThingShadow.d.ts.map