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

ErrorDetails

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

Contains the details of an IoT SiteWise error.

interface ErrorDetails {
code: ErrorCode;
details?: DetailedError[] | null;
message: string;
}

§Properties

§

The error code.

§
details?: DetailedError[] | null
[src]

A list of detailed errors.

§
message: string
[src]

The error message.