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
show all
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

Instance Attribute Details

#environment_variablesHash<String,String>

An array of key/value pairs specifying environment variables for the robot application

Returns:

  • (Hash<String,String>)

    An array of key/value pairs specifying environment variables for the robot application.

#launch_fileString

The launch file name.

Returns:

  • (String)

    The launch file name.

#package_nameString

The package name.

Returns:

  • (String)

    The package name.

#post_launch_fileString

The deployment post-launch file. This file will be executed after the launch file.

Returns:

  • (String)

    The deployment post-launch file.

#pre_launch_fileString

The deployment pre-launch file. This file will be executed prior to the launch file.

Returns:

  • (String)

    The deployment pre-launch file.