You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.
Class: Aws::RoboMaker::Types::DeploymentLaunchConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::RoboMaker::Types::DeploymentLaunchConfig
- Defined in:
- (unknown)
Overview
Note:
When passing DeploymentLaunchConfig as input to an Aws::Client method, you can use a vanilla Hash:
{
package_name: "Command", # required
pre_launch_file: "Path",
launch_file: "Command", # required
post_launch_file: "Path",
environment_variables: {
"EnvironmentVariableKey" => "EnvironmentVariableValue",
},
}
Configuration information for a deployment launch.
Returned by:
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
#launch_file ⇒ String
The launch file name.
#package_name ⇒ String
The package name.
#post_launch_file ⇒ String
The deployment post-launch file. This file will be executed after the launch file.
#pre_launch_file ⇒ String
The deployment pre-launch file. This file will be executed prior to the launch file.