Class: Aws::RoboMaker::Types::LaunchConfig
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::RoboMaker::Types::LaunchConfig
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-robomaker/types.rb
 
Overview
Information about a launch configuration.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #command  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
If you’ve specified ‘General` as the value for your `RobotSoftwareSuite`, you can use this field to specify a list of commands for your container image.
 - 
  
    
      #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
#command ⇒ Array<String>
If you’ve specified ‘General` as the value for your `RobotSoftwareSuite`, you can use this field to specify a list of commands for your container image.
If you’ve specified ‘SimulationRuntime` as the value for your `SimulationSoftwareSuite`, you can use this field to specify a list of commands for your container image.
      3196 3197 3198 3199 3200 3201 3202 3203 3204 3205  | 
    
      # File 'lib/aws-sdk-robomaker/types.rb', line 3196 class LaunchConfig < Struct.new( :package_name, :launch_file, :environment_variables, :port_forwarding_config, :stream_ui, :command) SENSITIVE = [] include Aws::Structure end  | 
  
#environment_variables ⇒ Hash<String,String>
The environment variables for the application launch.
      3196 3197 3198 3199 3200 3201 3202 3203 3204 3205  | 
    
      # File 'lib/aws-sdk-robomaker/types.rb', line 3196 class LaunchConfig < Struct.new( :package_name, :launch_file, :environment_variables, :port_forwarding_config, :stream_ui, :command) SENSITIVE = [] include Aws::Structure end  | 
  
#launch_file ⇒ String
The launch file name.
      3196 3197 3198 3199 3200 3201 3202 3203 3204 3205  | 
    
      # File 'lib/aws-sdk-robomaker/types.rb', line 3196 class LaunchConfig < Struct.new( :package_name, :launch_file, :environment_variables, :port_forwarding_config, :stream_ui, :command) SENSITIVE = [] include Aws::Structure end  | 
  
#package_name ⇒ String
The package name.
      3196 3197 3198 3199 3200 3201 3202 3203 3204 3205  | 
    
      # File 'lib/aws-sdk-robomaker/types.rb', line 3196 class LaunchConfig < Struct.new( :package_name, :launch_file, :environment_variables, :port_forwarding_config, :stream_ui, :command) SENSITIVE = [] include Aws::Structure end  | 
  
#port_forwarding_config ⇒ Types::PortForwardingConfig
The port forwarding configuration.
      3196 3197 3198 3199 3200 3201 3202 3203 3204 3205  | 
    
      # File 'lib/aws-sdk-robomaker/types.rb', line 3196 class LaunchConfig < Struct.new( :package_name, :launch_file, :environment_variables, :port_forwarding_config, :stream_ui, :command) SENSITIVE = [] include Aws::Structure end  | 
  
#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 launch the component. It must have a graphical user interface.
      3196 3197 3198 3199 3200 3201 3202 3203 3204 3205  | 
    
      # File 'lib/aws-sdk-robomaker/types.rb', line 3196 class LaunchConfig < Struct.new( :package_name, :launch_file, :environment_variables, :port_forwarding_config, :stream_ui, :command) SENSITIVE = [] include Aws::Structure end  |