Class: Aws::RoboMaker::Types::CreateWorldTemplateRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::RoboMaker::Types::CreateWorldTemplateRequest
- Defined in:
- gems/aws-sdk-robomaker/lib/aws-sdk-robomaker/types.rb
Overview
Note:
When making an API call, you may pass CreateWorldTemplateRequest data as a hash:
{
client_request_token: "ClientRequestToken",
name: "TemplateName",
template_body: "Json",
template_location: {
s3_bucket: "S3Bucket", # required
s3_key: "S3Key", # 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.
-
#name ⇒ String
The name of the world template.
-
#tags ⇒ Hash<String,String>
A map that contains tag keys and tag values that are attached to the world template.
-
#template_body ⇒ String
The world template body.
-
#template_location ⇒ Types::TemplateLocation
The location of the world template.
Instance Attribute Details
#client_request_token ⇒ String
Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.
1841 1842 1843 1844 1845 1846 1847 1848 1849 |
# File 'gems/aws-sdk-robomaker/lib/aws-sdk-robomaker/types.rb', line 1841 class CreateWorldTemplateRequest < Struct.new( :client_request_token, :name, :template_body, :template_location, :tags) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the world template.
1841 1842 1843 1844 1845 1846 1847 1848 1849 |
# File 'gems/aws-sdk-robomaker/lib/aws-sdk-robomaker/types.rb', line 1841 class CreateWorldTemplateRequest < Struct.new( :client_request_token, :name, :template_body, :template_location, :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 template.
1841 1842 1843 1844 1845 1846 1847 1848 1849 |
# File 'gems/aws-sdk-robomaker/lib/aws-sdk-robomaker/types.rb', line 1841 class CreateWorldTemplateRequest < Struct.new( :client_request_token, :name, :template_body, :template_location, :tags) SENSITIVE = [] include Aws::Structure end |
#template_body ⇒ String
The world template body.
1841 1842 1843 1844 1845 1846 1847 1848 1849 |
# File 'gems/aws-sdk-robomaker/lib/aws-sdk-robomaker/types.rb', line 1841 class CreateWorldTemplateRequest < Struct.new( :client_request_token, :name, :template_body, :template_location, :tags) SENSITIVE = [] include Aws::Structure end |
#template_location ⇒ Types::TemplateLocation
The location of the world template.
1841 1842 1843 1844 1845 1846 1847 1848 1849 |
# File 'gems/aws-sdk-robomaker/lib/aws-sdk-robomaker/types.rb', line 1841 class CreateWorldTemplateRequest < Struct.new( :client_request_token, :name, :template_body, :template_location, :tags) SENSITIVE = [] include Aws::Structure end |