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
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DeploymentLaunchConfig.BuilderenvironmentVariables(Map<String,String> environmentVariables)An array of key/value pairs specifying environment variables for the robot applicationDeploymentLaunchConfig.BuilderlaunchFile(String launchFile)The launch file name.DeploymentLaunchConfig.BuilderpackageName(String packageName)The package name.DeploymentLaunchConfig.BuilderpostLaunchFile(String postLaunchFile)The deployment post-launch file.DeploymentLaunchConfig.BuilderpreLaunchFile(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 Detail
-
packageName
DeploymentLaunchConfig.Builder packageName(String 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
DeploymentLaunchConfig.Builder preLaunchFile(String 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
DeploymentLaunchConfig.Builder launchFile(String 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
DeploymentLaunchConfig.Builder postLaunchFile(String 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
DeploymentLaunchConfig.Builder environmentVariables(Map<String,String> 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.
-
-