Interface DeploymentLaunchConfig.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<DeploymentLaunchConfig.Builder,
,DeploymentLaunchConfig> SdkBuilder<DeploymentLaunchConfig.Builder,
,DeploymentLaunchConfig> SdkPojo
- Enclosing class:
DeploymentLaunchConfig
public static interface DeploymentLaunchConfig.Builder
extends SdkPojo, CopyableBuilder<DeploymentLaunchConfig.Builder,DeploymentLaunchConfig>
-
Method Summary
Modifier and TypeMethodDescriptionenvironmentVariables
(Map<String, String> environmentVariables) An array of key/value pairs specifying environment variables for the robot applicationlaunchFile
(String launchFile) The launch file name.packageName
(String packageName) The package name.postLaunchFile
(String postLaunchFile) The deployment post-launch file.preLaunchFile
(String preLaunchFile) The deployment pre-launch file.Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
Method Details
-
packageName
The package name.
- Parameters:
packageName
- The package name.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
preLaunchFile
The deployment pre-launch file. This file will be executed prior to the launch file.
- Parameters:
preLaunchFile
- The deployment pre-launch file. This file will be executed prior to the launch file.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
launchFile
The launch file name.
- Parameters:
launchFile
- The launch file name.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
postLaunchFile
The deployment post-launch file. This file will be executed after the launch file.
- Parameters:
postLaunchFile
- The deployment post-launch file. This file will be executed after the launch file.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
environmentVariables
An array of key/value pairs specifying environment variables for the robot application
- Parameters:
environmentVariables
- An array of key/value pairs specifying environment variables for the robot application- Returns:
- Returns a reference to this object so that method calls can be chained together.
-