Class: Aws::RoboMaker::Types::CreateRobotApplicationRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::RoboMaker::Types::CreateRobotApplicationRequest
- Defined in:
- gems/aws-sdk-robomaker/lib/aws-sdk-robomaker/types.rb
Overview
Note:
When making an API call, you may pass CreateRobotApplicationRequest data as a hash:
{
name: "Name", # required
sources: [
{
s3_bucket: "S3Bucket",
s3_key: "S3Key",
architecture: "X86_64", # accepts X86_64, ARM64, ARMHF
},
],
robot_software_suite: { # required
name: "ROS", # accepts ROS, ROS2, General
version: "Kinetic", # accepts Kinetic, Melodic, Dashing, Foxy
},
tags: {
"TagKey" => "TagValue",
},
environment: {
uri: "RepositoryUrl",
},
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#environment ⇒ Types::Environment
The object that contains that URI of the Docker image that you use for your robot application.
-
#name ⇒ String
The name of the robot application.
-
#robot_software_suite ⇒ Types::RobotSoftwareSuite
The robot software suite (ROS distribuition) used by the robot application.
-
#sources ⇒ Array<Types::SourceConfig>
The sources of the robot application.
-
#tags ⇒ Hash<String,String>
A map that contains tag keys and tag values that are attached to the robot application.
Instance Attribute Details
#environment ⇒ Types::Environment
The object that contains that URI of the Docker image that you use for your robot application.
610 611 612 613 614 615 616 617 618 |
# File 'gems/aws-sdk-robomaker/lib/aws-sdk-robomaker/types.rb', line 610 class CreateRobotApplicationRequest < Struct.new( :name, :sources, :robot_software_suite, :tags, :environment) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the robot application.
610 611 612 613 614 615 616 617 618 |
# File 'gems/aws-sdk-robomaker/lib/aws-sdk-robomaker/types.rb', line 610 class CreateRobotApplicationRequest < Struct.new( :name, :sources, :robot_software_suite, :tags, :environment) SENSITIVE = [] include Aws::Structure end |
#robot_software_suite ⇒ Types::RobotSoftwareSuite
The robot software suite (ROS distribuition) used by the robot application.
610 611 612 613 614 615 616 617 618 |
# File 'gems/aws-sdk-robomaker/lib/aws-sdk-robomaker/types.rb', line 610 class CreateRobotApplicationRequest < Struct.new( :name, :sources, :robot_software_suite, :tags, :environment) SENSITIVE = [] include Aws::Structure end |
#sources ⇒ Array<Types::SourceConfig>
The sources of the robot application.
610 611 612 613 614 615 616 617 618 |
# File 'gems/aws-sdk-robomaker/lib/aws-sdk-robomaker/types.rb', line 610 class CreateRobotApplicationRequest < Struct.new( :name, :sources, :robot_software_suite, :tags, :environment) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Hash<String,String>
A map that contains tag keys and tag values that are attached to the robot application.
610 611 612 613 614 615 616 617 618 |
# File 'gems/aws-sdk-robomaker/lib/aws-sdk-robomaker/types.rb', line 610 class CreateRobotApplicationRequest < Struct.new( :name, :sources, :robot_software_suite, :tags, :environment) SENSITIVE = [] include Aws::Structure end |