Class: Aws::RoboMaker::Types::DeploymentLaunchConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::RoboMaker::Types::DeploymentLaunchConfig
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-robomaker/types.rb
Overview
Configuration information for a deployment launch.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#environment_variables ⇒ Hash<String,String>
An array of key/value pairs specifying environment variables for the robot application.
-
#launch_file ⇒ String
The launch file name.
-
#package_name ⇒ String
The package name.
-
#post_launch_file ⇒ String
The deployment post-launch file.
-
#pre_launch_file ⇒ String
The deployment pre-launch file.
Instance Attribute Details
#environment_variables ⇒ Hash<String,String>
An array of key/value pairs specifying environment variables for the robot application
1831 1832 1833 1834 1835 1836 1837 1838 1839 |
# File 'lib/aws-sdk-robomaker/types.rb', line 1831 class DeploymentLaunchConfig < Struct.new( :package_name, :pre_launch_file, :launch_file, :post_launch_file, :environment_variables) SENSITIVE = [] include Aws::Structure end |
#launch_file ⇒ String
The launch file name.
1831 1832 1833 1834 1835 1836 1837 1838 1839 |
# File 'lib/aws-sdk-robomaker/types.rb', line 1831 class DeploymentLaunchConfig < Struct.new( :package_name, :pre_launch_file, :launch_file, :post_launch_file, :environment_variables) SENSITIVE = [] include Aws::Structure end |
#package_name ⇒ String
The package name.
1831 1832 1833 1834 1835 1836 1837 1838 1839 |
# File 'lib/aws-sdk-robomaker/types.rb', line 1831 class DeploymentLaunchConfig < Struct.new( :package_name, :pre_launch_file, :launch_file, :post_launch_file, :environment_variables) SENSITIVE = [] include Aws::Structure end |
#post_launch_file ⇒ String
The deployment post-launch file. This file will be executed after the launch file.
1831 1832 1833 1834 1835 1836 1837 1838 1839 |
# File 'lib/aws-sdk-robomaker/types.rb', line 1831 class DeploymentLaunchConfig < Struct.new( :package_name, :pre_launch_file, :launch_file, :post_launch_file, :environment_variables) SENSITIVE = [] include Aws::Structure end |
#pre_launch_file ⇒ String
The deployment pre-launch file. This file will be executed prior to the launch file.
1831 1832 1833 1834 1835 1836 1837 1838 1839 |
# File 'lib/aws-sdk-robomaker/types.rb', line 1831 class DeploymentLaunchConfig < Struct.new( :package_name, :pre_launch_file, :launch_file, :post_launch_file, :environment_variables) SENSITIVE = [] include Aws::Structure end |