Class: Aws::RoboMaker::Types::RobotSoftwareSuite
- Inherits:
-
Struct
- Object
- Struct
- Aws::RoboMaker::Types::RobotSoftwareSuite
- Defined in:
- gems/aws-sdk-robomaker/lib/aws-sdk-robomaker/types.rb
Overview
Note:
When making an API call, you may pass RobotSoftwareSuite data as a hash:
{
name: "ROS", # accepts ROS, ROS2, General
version: "Kinetic", # accepts Kinetic, Melodic, Dashing, Foxy
}
Information about a robot software suite (ROS distribution).
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
The name of the robot software suite (ROS distribution).
-
#version ⇒ String
The version of the robot software suite (ROS distribution).
Instance Attribute Details
#name ⇒ String
The name of the robot software suite (ROS distribution).
5229 5230 5231 5232 5233 5234 |
# File 'gems/aws-sdk-robomaker/lib/aws-sdk-robomaker/types.rb', line 5229 class RobotSoftwareSuite < Struct.new( :name, :version) SENSITIVE = [] include Aws::Structure end |
#version ⇒ String
The version of the robot software suite (ROS distribution).
5229 5230 5231 5232 5233 5234 |
# File 'gems/aws-sdk-robomaker/lib/aws-sdk-robomaker/types.rb', line 5229 class RobotSoftwareSuite < Struct.new( :name, :version) SENSITIVE = [] include Aws::Structure end |