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

DescribeWorldExportJobResponse

import type { DescribeWorldExportJobResponse } from "https://aws-api.deno.dev/v0.4/services/robomaker.ts?docs=full";
interface DescribeWorldExportJobResponse {
arn?: string | null;
clientRequestToken?: string | null;
createdAt?: Date | number | null;
failureCode?: WorldExportJobErrorCode | null;
failureReason?: string | null;
iamRole?: string | null;
outputLocation?: OutputLocation | null;
status?: WorldExportJobStatus | null;
tags?: {
[key: string]: string | null | undefined;
}
| null;
worlds?: string[] | null;
}

§Properties

§
arn?: string | null
[src]

The Amazon Resource Name (ARN) of the world export job.

§
clientRequestToken?: string | null
[src]

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.

§
createdAt?: Date | number | null
[src]

The time, in milliseconds since the epoch, when the world export job was created.

§
failureCode?: WorldExportJobErrorCode | null
[src]

The failure code of the world export job if it failed:

InternalServiceError: Internal service error.

LimitExceeded: The requested resource exceeds the maximum number allowed, or the number of concurrent stream requests exceeds the maximum number allowed.

ResourceNotFound: The specified resource could not be found.

RequestThrottled: The request was throttled.

InvalidInput: An input parameter in the request is not valid.

§
failureReason?: string | null
[src]

The reason why the world export job failed.

§
iamRole?: string | null
[src]

The IAM role that the world export process uses to access the Amazon S3 bucket and put the export.

§
outputLocation?: OutputLocation | null
[src]
§

The status of the world export job.

Pending: The world export job request is pending.

Running: The world export job is running.

Completed: The world export job completed.

Failed: The world export job failed. See failureCode and failureReason for more information.

Canceled: The world export job was cancelled.

Canceling: The world export job is being cancelled.

§
tags?: {
[key: string]: string | null | undefined;
}
| null
[src]

A map that contains tag keys and tag values that are attached to the world export job.

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

A list of Amazon Resource Names (arns) that correspond to worlds to be exported.