#[non_exhaustive]
pub struct DescribeWorldGenerationJobOutput { pub arn: Option<String>, pub status: Option<WorldGenerationJobStatus>, pub created_at: Option<DateTime>, pub failure_code: Option<WorldGenerationJobErrorCode>, pub failure_reason: Option<String>, pub client_request_token: Option<String>, pub template: Option<String>, pub world_count: Option<WorldCount>, pub finished_worlds_summary: Option<FinishedWorldsSummary>, pub tags: Option<HashMap<String, String>>, pub world_tags: Option<HashMap<String, String>>, }

Fields (Non-exhaustive)

This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.
arn: Option<String>

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

status: Option<WorldGenerationJobStatus>

The status of the world generation job:

Pending

The world generation job request is pending.

Running

The world generation job is running.

Completed

The world generation job completed.

Failed

The world generation job failed. See failureCode for more information.

PartialFailed

Some worlds did not generate.

Canceled

The world generation job was cancelled.

Canceling

The world generation job is being cancelled.

created_at: Option<DateTime>

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

failure_code: Option<WorldGenerationJobErrorCode>

The failure code of the world generation 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.

failure_reason: Option<String>

The reason why the world generation job failed.

client_request_token: Option<String>

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

template: Option<String>

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

world_count: Option<WorldCount>

Information about the world count.

finished_worlds_summary: Option<FinishedWorldsSummary>

Summary information about finished worlds.

tags: Option<HashMap<String, String>>

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

world_tags: Option<HashMap<String, String>>

A map that contains tag keys and tag values that are attached to the generated worlds.

Implementations

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

The status of the world generation job:

Pending

The world generation job request is pending.

Running

The world generation job is running.

Completed

The world generation job completed.

Failed

The world generation job failed. See failureCode for more information.

PartialFailed

Some worlds did not generate.

Canceled

The world generation job was cancelled.

Canceling

The world generation job is being cancelled.

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

The failure code of the world generation 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.

The reason why the world generation job failed.

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

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

Information about the world count.

Summary information about finished worlds.

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

A map that contains tag keys and tag values that are attached to the generated worlds.

Creates a new builder-style object to manufacture DescribeWorldGenerationJobOutput

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more