Struct aws_sdk_robomaker::output::CreateWorldExportJobOutput [−][src]
#[non_exhaustive]pub struct CreateWorldExportJobOutput {
pub arn: Option<String>,
pub status: Option<WorldExportJobStatus>,
pub created_at: Option<DateTime>,
pub failure_code: Option<WorldExportJobErrorCode>,
pub client_request_token: Option<String>,
pub output_location: Option<OutputLocation>,
pub iam_role: Option<String>,
pub 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 export job.
status: Option<WorldExportJobStatus>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
failureCodefor more information. - Canceled
-
The world export job was cancelled.
- Canceling
-
The world export job is being cancelled.
created_at: Option<DateTime>The time, in milliseconds since the epoch, when the world export job was created.
failure_code: Option<WorldExportJobErrorCode>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.
- AllWorldGenerationFailed
-
All of the worlds in the world generation job failed. This can happen if your
worldCountis greater than 50 or less than 1.
For more information about troubleshooting WorldForge, see Troubleshooting Simulation WorldForge.
client_request_token: Option<String>Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.
output_location: Option<OutputLocation>The output location.
iam_role: Option<String>The IAM role that the world export process uses to access the Amazon S3 bucket and put the export.
A map that contains tag keys and tag values that are attached to the world export job.
Implementations
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
failureCodefor more information. - Canceled
-
The world export job was cancelled.
- Canceling
-
The world export job is being cancelled.
The time, in milliseconds since the epoch, when the world export job was created.
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.
- AllWorldGenerationFailed
-
All of the worlds in the world generation job failed. This can happen if your
worldCountis greater than 50 or less than 1.
For more information about troubleshooting WorldForge, see Troubleshooting Simulation WorldForge.
Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.
The output location.
The IAM role that the world export process uses to access the Amazon S3 bucket and put the export.
A map that contains tag keys and tag values that are attached to the world export job.
Creates a new builder-style object to manufacture CreateWorldExportJobOutput
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 RefUnwindSafe for CreateWorldExportJobOutput
impl Send for CreateWorldExportJobOutput
impl Sync for CreateWorldExportJobOutput
impl Unpin for CreateWorldExportJobOutput
impl UnwindSafe for CreateWorldExportJobOutput
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