Class: Aws::RoboMaker::Types::CreateWorldExportJobRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::RoboMaker::Types::CreateWorldExportJobRequest
- Defined in:
- gems/aws-sdk-robomaker/lib/aws-sdk-robomaker/types.rb
Overview
When making an API call, you may pass CreateWorldExportJobRequest data as a hash:
{
client_request_token: "ClientRequestToken",
worlds: ["Arn"], # required
output_location: { # required
s3_bucket: "S3Bucket",
s3_prefix: "S3Key",
},
iam_role: "IamRole", # required
tags: {
"TagKey" => "TagValue",
},
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#client_request_token ⇒ String
Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.
-
#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.
-
#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 export.
Instance Attribute Details
#client_request_token ⇒ String
Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.
A suitable default value is auto-generated. You should normally not need to pass this option.
1517 1518 1519 1520 1521 1522 1523 1524 1525 |
# File 'gems/aws-sdk-robomaker/lib/aws-sdk-robomaker/types.rb', line 1517 class CreateWorldExportJobRequest < Struct.new( :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.
1517 1518 1519 1520 1521 1522 1523 1524 1525 |
# File 'gems/aws-sdk-robomaker/lib/aws-sdk-robomaker/types.rb', line 1517 class CreateWorldExportJobRequest < Struct.new( :client_request_token, :worlds, :output_location, :iam_role, :tags) SENSITIVE = [] include Aws::Structure end |
#output_location ⇒ Types::OutputLocation
The output location.
1517 1518 1519 1520 1521 1522 1523 1524 1525 |
# File 'gems/aws-sdk-robomaker/lib/aws-sdk-robomaker/types.rb', line 1517 class CreateWorldExportJobRequest < Struct.new( :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.
1517 1518 1519 1520 1521 1522 1523 1524 1525 |
# File 'gems/aws-sdk-robomaker/lib/aws-sdk-robomaker/types.rb', line 1517 class CreateWorldExportJobRequest < Struct.new( :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 export.
1517 1518 1519 1520 1521 1522 1523 1524 1525 |
# File 'gems/aws-sdk-robomaker/lib/aws-sdk-robomaker/types.rb', line 1517 class CreateWorldExportJobRequest < Struct.new( :client_request_token, :worlds, :output_location, :iam_role, :tags) SENSITIVE = [] include Aws::Structure end |