Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

GetRetainedMessageResponse

import type { GetRetainedMessageResponse } from "https://aws-api.deno.dev/v0.3/services/iotdata.ts?docs=full";

The output from the GetRetainedMessage operation.

interface GetRetainedMessageResponse {
lastModifiedTime?: number | null;
payload?: Uint8Array | null;
qos?: number | null;
topic?: string | null;
}

§Properties

§
lastModifiedTime?: number | null
[src]

The Epoch date and time, in milliseconds, when the retained message was stored by IoT.

§
payload?: Uint8Array | null
[src]

The Base64-encoded message payload of the retained message body.

§
qos?: number | null
[src]

The quality of service (QoS) level used to publish the retained message.

§
topic?: string | null
[src]

The topic name to which the retained message was published.