You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.
Class: Aws::RoboMaker::Types::LaunchConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::RoboMaker::Types::LaunchConfig
- Defined in:
- (unknown)
Overview
When passing LaunchConfig as input to an Aws::Client method, you can use a vanilla Hash:
{
package_name: "Command", # required
launch_file: "Command", # required
environment_variables: {
"EnvironmentVariableKey" => "EnvironmentVariableValue",
},
port_forwarding_config: {
port_mappings: [
{
job_port: 1, # required
application_port: 1, # required
enable_on_public_ip: false,
},
],
},
stream_ui: false,
}
Information about a launch configuration.
Returned by:
Instance Attribute Summary collapse
-
#environment_variables ⇒ Hash<String,String>
The environment variables for the application launch.
-
#launch_file ⇒ String
The launch file name.
-
#package_name ⇒ String
The package name.
-
#port_forwarding_config ⇒ Types::PortForwardingConfig
The port forwarding configuration.
-
#stream_ui ⇒ Boolean
Boolean indicating whether a streaming session will be configured for the application.
Instance Attribute Details
#environment_variables ⇒ Hash<String,String>
The environment variables for the application launch.
#launch_file ⇒ String
The launch file name.
#package_name ⇒ String
The package name.
#port_forwarding_config ⇒ Types::PortForwardingConfig
The port forwarding configuration.
#stream_ui ⇒ Boolean
Boolean indicating whether a streaming session will be configured for
the application. If True
, AWS RoboMaker will configure a connection so
you can interact with your application as it is running in the
simulation. You must configure and luanch the component. It must have a
graphical user interface.