import type { HttpHandlerOptions as __HttpHandlerOptions, PaginationConfiguration, Paginator } from "@smithy/types"; import { type DeleteConnectionCommandInput, type DeleteConnectionCommandOutput } from "./commands/DeleteConnectionCommand"; import { type DeleteThingShadowCommandInput, type DeleteThingShadowCommandOutput } from "./commands/DeleteThingShadowCommand"; import { type GetRetainedMessageCommandInput, type GetRetainedMessageCommandOutput } from "./commands/GetRetainedMessageCommand"; import { type GetThingShadowCommandInput, type GetThingShadowCommandOutput } from "./commands/GetThingShadowCommand"; import { type ListNamedShadowsForThingCommandInput, type ListNamedShadowsForThingCommandOutput } from "./commands/ListNamedShadowsForThingCommand"; import { type ListRetainedMessagesCommandInput, type ListRetainedMessagesCommandOutput } from "./commands/ListRetainedMessagesCommand"; import { type PublishCommandInput, type PublishCommandOutput } from "./commands/PublishCommand"; import { type UpdateThingShadowCommandInput, type UpdateThingShadowCommandOutput } from "./commands/UpdateThingShadowCommand"; import { IoTDataPlaneClient } from "./IoTDataPlaneClient"; export interface IoTDataPlane { /** * @see {@link DeleteConnectionCommand} */ deleteConnection(args: DeleteConnectionCommandInput, options?: __HttpHandlerOptions): Promise; deleteConnection(args: DeleteConnectionCommandInput, cb: (err: any, data?: DeleteConnectionCommandOutput) => void): void; deleteConnection(args: DeleteConnectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteConnectionCommandOutput) => void): void; /** * @see {@link DeleteThingShadowCommand} */ deleteThingShadow(args: DeleteThingShadowCommandInput, options?: __HttpHandlerOptions): Promise; deleteThingShadow(args: DeleteThingShadowCommandInput, cb: (err: any, data?: DeleteThingShadowCommandOutput) => void): void; deleteThingShadow(args: DeleteThingShadowCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteThingShadowCommandOutput) => void): void; /** * @see {@link GetRetainedMessageCommand} */ getRetainedMessage(args: GetRetainedMessageCommandInput, options?: __HttpHandlerOptions): Promise; getRetainedMessage(args: GetRetainedMessageCommandInput, cb: (err: any, data?: GetRetainedMessageCommandOutput) => void): void; getRetainedMessage(args: GetRetainedMessageCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetRetainedMessageCommandOutput) => void): void; /** * @see {@link GetThingShadowCommand} */ getThingShadow(args: GetThingShadowCommandInput, options?: __HttpHandlerOptions): Promise; getThingShadow(args: GetThingShadowCommandInput, cb: (err: any, data?: GetThingShadowCommandOutput) => void): void; getThingShadow(args: GetThingShadowCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetThingShadowCommandOutput) => void): void; /** * @see {@link ListNamedShadowsForThingCommand} */ listNamedShadowsForThing(args: ListNamedShadowsForThingCommandInput, options?: __HttpHandlerOptions): Promise; listNamedShadowsForThing(args: ListNamedShadowsForThingCommandInput, cb: (err: any, data?: ListNamedShadowsForThingCommandOutput) => void): void; listNamedShadowsForThing(args: ListNamedShadowsForThingCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListNamedShadowsForThingCommandOutput) => void): void; /** * @see {@link ListRetainedMessagesCommand} */ listRetainedMessages(): Promise; listRetainedMessages(args: ListRetainedMessagesCommandInput, options?: __HttpHandlerOptions): Promise; listRetainedMessages(args: ListRetainedMessagesCommandInput, cb: (err: any, data?: ListRetainedMessagesCommandOutput) => void): void; listRetainedMessages(args: ListRetainedMessagesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListRetainedMessagesCommandOutput) => void): void; /** * @see {@link PublishCommand} */ publish(args: PublishCommandInput, options?: __HttpHandlerOptions): Promise; publish(args: PublishCommandInput, cb: (err: any, data?: PublishCommandOutput) => void): void; publish(args: PublishCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PublishCommandOutput) => void): void; /** * @see {@link UpdateThingShadowCommand} */ updateThingShadow(args: UpdateThingShadowCommandInput, options?: __HttpHandlerOptions): Promise; updateThingShadow(args: UpdateThingShadowCommandInput, cb: (err: any, data?: UpdateThingShadowCommandOutput) => void): void; updateThingShadow(args: UpdateThingShadowCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateThingShadowCommandOutput) => void): void; /** * @see {@link ListRetainedMessagesCommand} * @param args - command input. * @param paginationConfig - optional pagination config. * @returns AsyncIterable of {@link ListRetainedMessagesCommandOutput}. */ paginateListRetainedMessages(args?: ListRetainedMessagesCommandInput, paginationConfig?: Omit): Paginator; } /** * IoT data *

IoT data enables secure, bi-directional communication between Internet-connected things (such as sensors, * actuators, embedded devices, or smart appliances) and the Amazon Web Services cloud. It implements a broker for applications and * things to publish messages over HTTP (Publish) and retrieve, update, and delete shadows. A shadow is a * persistent representation of your things and their state in the Amazon Web Services cloud.

*

Find the endpoint address for actions in IoT data by running this CLI command:

*

* aws iot describe-endpoint --endpoint-type iot:Data-ATS *

*

The service name used by Amazon Web ServicesSignature Version 4 * to sign requests is: iotdevicegateway.

* @public */ export declare class IoTDataPlane extends IoTDataPlaneClient implements IoTDataPlane { }