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

WorldGenerationJobSummary

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

Information about a world generator job.

interface WorldGenerationJobSummary {
arn?: string | null;
createdAt?: Date | number | null;
failedWorldCount?: number | null;
status?: WorldGenerationJobStatus | null;
succeededWorldCount?: number | null;
template?: string | null;
worldCount?: WorldCount | null;
}

§Properties

§
arn?: string | null
[src]

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

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

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

§
failedWorldCount?: number | null
[src]

The number of worlds that failed.

§

The status of the world generator job:

Pending: The world generator job request is pending.

Running: The world generator job is running.

Completed: The world generator job completed.

Failed: The world generator job failed. See failureCode for more information.

PartialFailed: Some worlds did not generate.

Canceled: The world generator job was cancelled.

Canceling: The world generator job is being cancelled.

§
succeededWorldCount?: number | null
[src]

The number of worlds that were generated.

§
template?: string | null
[src]

The Amazon Resource Name (arn) of the world template.

§
worldCount?: WorldCount | null
[src]

Information about the world count.