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

GetUploadStatusResponse

import type { GetUploadStatusResponse } from "https://aws-api.deno.dev/v0.4/services/iotthingsgraph.ts?docs=full";
interface GetUploadStatusResponse {
createdDate: Date | number;
failureReason?: string[] | null;
namespaceArn?: string | null;
namespaceName?: string | null;
namespaceVersion?: number | null;
uploadId: string;
uploadStatus: UploadStatus;
}

§Properties

§
createdDate: Date | number
[src]

The date at which the upload was created.

§
failureReason?: string[] | null
[src]

The reason for an upload failure.

§
namespaceArn?: string | null
[src]

The ARN of the upload.

§
namespaceName?: string | null
[src]

The name of the upload's namespace.

§
namespaceVersion?: number | null
[src]

The version of the user's namespace. Defaults to the latest version of the user's namespace.

§
uploadId: string
[src]

The ID of the upload.

§
uploadStatus: UploadStatus
[src]

The status of the upload. The initial status is IN_PROGRESS. The response show all validation failures if the upload fails.