Class: Aws::RoboMaker::Types::DescribeWorldExportJobResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::RoboMaker::Types::DescribeWorldExportJobResponse
- Defined in:
- gems/aws-sdk-robomaker/lib/aws-sdk-robomaker/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#arn ⇒ String
The Amazon Resource Name (ARN) of the world export job.
-
#client_request_token ⇒ String
Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.
-
#created_at ⇒ Time
The time, in milliseconds since the epoch, when the world export job was created.
-
#failure_code ⇒ String
The failure code of the world export job if it failed:.
-
#failure_reason ⇒ String
The reason why the world export job failed.
-
#iam_role ⇒ String
The IAM role that the world export process uses to access the Amazon S3 bucket and put the export.
-
#output_location ⇒ Types::OutputLocation
The output location.
-
#status ⇒ String
The status of the world export job.
-
#tags ⇒ Hash<String,String>
A map that contains tag keys and tag values that are attached to the world export job.
-
#worlds ⇒ Array<String>
A list of Amazon Resource Names (arns) that correspond to worlds to be exported.
Instance Attribute Details
#arn ⇒ String
The Amazon Resource Name (ARN) of the world export job.
2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 |
# File 'gems/aws-sdk-robomaker/lib/aws-sdk-robomaker/types.rb', line 2676 class DescribeWorldExportJobResponse < Struct.new( :arn, :status, :created_at, :failure_code, :failure_reason, :client_request_token, :worlds, :output_location, :iam_role, :tags) SENSITIVE = [] include Aws::Structure end |
#client_request_token ⇒ String
Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.
2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 |
# File 'gems/aws-sdk-robomaker/lib/aws-sdk-robomaker/types.rb', line 2676 class DescribeWorldExportJobResponse < Struct.new( :arn, :status, :created_at, :failure_code, :failure_reason, :client_request_token, :worlds, :output_location, :iam_role, :tags) SENSITIVE = [] include Aws::Structure end |
#created_at ⇒ Time
The time, in milliseconds since the epoch, when the world export job was created.
2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 |
# File 'gems/aws-sdk-robomaker/lib/aws-sdk-robomaker/types.rb', line 2676 class DescribeWorldExportJobResponse < Struct.new( :arn, :status, :created_at, :failure_code, :failure_reason, :client_request_token, :worlds, :output_location, :iam_role, :tags) SENSITIVE = [] include Aws::Structure end |
#failure_code ⇒ String
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.
2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 |
# File 'gems/aws-sdk-robomaker/lib/aws-sdk-robomaker/types.rb', line 2676 class DescribeWorldExportJobResponse < Struct.new( :arn, :status, :created_at, :failure_code, :failure_reason, :client_request_token, :worlds, :output_location, :iam_role, :tags) SENSITIVE = [] include Aws::Structure end |
#failure_reason ⇒ String
The reason why the world export job failed.
2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 |
# File 'gems/aws-sdk-robomaker/lib/aws-sdk-robomaker/types.rb', line 2676 class DescribeWorldExportJobResponse < Struct.new( :arn, :status, :created_at, :failure_code, :failure_reason, :client_request_token, :worlds, :output_location, :iam_role, :tags) SENSITIVE = [] include Aws::Structure end |
#iam_role ⇒ String
The IAM role that the world export process uses to access the Amazon S3 bucket and put the export.
2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 |
# File 'gems/aws-sdk-robomaker/lib/aws-sdk-robomaker/types.rb', line 2676 class DescribeWorldExportJobResponse < Struct.new( :arn, :status, :created_at, :failure_code, :failure_reason, :client_request_token, :worlds, :output_location, :iam_role, :tags) SENSITIVE = [] include Aws::Structure end |
#output_location ⇒ Types::OutputLocation
The output location.
2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 |
# File 'gems/aws-sdk-robomaker/lib/aws-sdk-robomaker/types.rb', line 2676 class DescribeWorldExportJobResponse < Struct.new( :arn, :status, :created_at, :failure_code, :failure_reason, :client_request_token, :worlds, :output_location, :iam_role, :tags) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
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
andfailureReason
for more information.- Canceled
The world export job was cancelled.
- Canceling
The world export job is being cancelled.
2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 |
# File 'gems/aws-sdk-robomaker/lib/aws-sdk-robomaker/types.rb', line 2676 class DescribeWorldExportJobResponse < Struct.new( :arn, :status, :created_at, :failure_code, :failure_reason, :client_request_token, :worlds, :output_location, :iam_role, :tags) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Hash<String,String>
A map that contains tag keys and tag values that are attached to the world export job.
2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 |
# File 'gems/aws-sdk-robomaker/lib/aws-sdk-robomaker/types.rb', line 2676 class DescribeWorldExportJobResponse < Struct.new( :arn, :status, :created_at, :failure_code, :failure_reason, :client_request_token, :worlds, :output_location, :iam_role, :tags) SENSITIVE = [] include Aws::Structure end |
#worlds ⇒ Array<String>
A list of Amazon Resource Names (arns) that correspond to worlds to be exported.
2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 |
# File 'gems/aws-sdk-robomaker/lib/aws-sdk-robomaker/types.rb', line 2676 class DescribeWorldExportJobResponse < Struct.new( :arn, :status, :created_at, :failure_code, :failure_reason, :client_request_token, :worlds, :output_location, :iam_role, :tags) SENSITIVE = [] include Aws::Structure end |