Struct aws_sdk_robomaker::output::CreateWorldGenerationJobOutput [−][src]
#[non_exhaustive]pub struct CreateWorldGenerationJobOutput {
pub arn: Option<String>,
pub status: Option<WorldGenerationJobStatus>,
pub created_at: Option<DateTime>,
pub failure_code: Option<WorldGenerationJobErrorCode>,
pub client_request_token: Option<String>,
pub template: Option<String>,
pub world_count: Option<WorldCount>,
pub tags: Option<HashMap<String, String>>,
pub world_tags: Option<HashMap<String, String>>,
}Fields (Non-exhaustive)
This struct is marked as non-exhaustive
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 generator job.
status: Option<WorldGenerationJobStatus>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
failureCodefor more information. - PartialFailed
-
Some worlds did not generate.
- Canceled
-
The world generator job was cancelled.
- Canceling
-
The world generator job is being cancelled.
created_at: Option<DateTime>The time, in milliseconds since the epoch, when the world generator job was created.
failure_code: Option<WorldGenerationJobErrorCode>The failure code of the world generator 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.
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.
A map that contains tag keys and tag values that are attached to the world generator job.
A map that contains tag keys and tag values that are attached to the generated worlds.
Implementations
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
failureCodefor more information. - PartialFailed
-
Some worlds did not generate.
- Canceled
-
The world generator job was cancelled.
- Canceling
-
The world generator job is being cancelled.
The time, in milliseconds since the epoch, when the world generator job was created.
The failure code of the world generator 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.
Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.
Information about the world count.
A map that contains tag keys and tag values that are attached to the world generator 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 CreateWorldGenerationJobOutput
Trait Implementations
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
impl Send for CreateWorldGenerationJobOutput
impl Sync for CreateWorldGenerationJobOutput
impl Unpin for CreateWorldGenerationJobOutput
impl UnwindSafe for CreateWorldGenerationJobOutput
Blanket Implementations
Mutably borrows from an owned value. Read more
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