You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::RoboMaker::Types::UpdateSimulationApplicationRequest

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing UpdateSimulationApplicationRequest as input to an Aws::Client method, you can use a vanilla Hash:

{
  application: "Arn", # required
  sources: [ # required
    {
      s3_bucket: "S3Bucket",
      s3_key: "S3Key",
      architecture: "X86_64", # accepts X86_64, ARM64, ARMHF
    },
  ],
  simulation_software_suite: { # required
    name: "Gazebo", # accepts Gazebo, RosbagPlay
    version: "SimulationSoftwareSuiteVersionType",
  },
  robot_software_suite: { # required
    name: "ROS", # accepts ROS, ROS2
    version: "Kinetic", # accepts Kinetic, Melodic, Dashing
  },
  rendering_engine: {
    name: "OGRE", # accepts OGRE
    version: "RenderingEngineVersionType",
  },
  current_revision_id: "RevisionId",
}

Instance Attribute Summary collapse

Instance Attribute Details

#applicationString

The application information for the simulation application.

Returns:

  • (String)

    The application information for the simulation application.

#current_revision_idString

The revision id for the robot application.

Returns:

  • (String)

    The revision id for the robot application.

#rendering_engineTypes::RenderingEngine

The rendering engine for the simulation application.

Returns:

#robot_software_suiteTypes::RobotSoftwareSuite

Information about the robot software suite (ROS distribution).

Returns:

#simulation_software_suiteTypes::SimulationSoftwareSuite

The simulation software suite used by the simulation application.

Returns:

#sourcesArray<Types::SourceConfig>

The sources of the simulation application.

Returns: