Class: Aws::RoboMaker::Types::CreateFleetRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::RoboMaker::Types::CreateFleetRequest
- Defined in:
- gems/aws-sdk-robomaker/lib/aws-sdk-robomaker/types.rb
Overview
Note:
When making an API call, you may pass CreateFleetRequest data as a hash:
{
name: "Name", # required
tags: {
"TagKey" => "TagValue",
},
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
The name of the fleet.
-
#tags ⇒ Hash<String,String>
A map that contains tag keys and tag values that are attached to the fleet.
Instance Attribute Details
#name ⇒ String
The name of the fleet.
526 527 528 529 530 531 |
# File 'gems/aws-sdk-robomaker/lib/aws-sdk-robomaker/types.rb', line 526 class CreateFleetRequest < Struct.new( :name, :tags) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Hash<String,String>
A map that contains tag keys and tag values that are attached to the fleet.
526 527 528 529 530 531 |
# File 'gems/aws-sdk-robomaker/lib/aws-sdk-robomaker/types.rb', line 526 class CreateFleetRequest < Struct.new( :name, :tags) SENSITIVE = [] include Aws::Structure end |