public static interface LaunchConfig.Builder extends SdkPojo, CopyableBuilder<LaunchConfig.Builder,LaunchConfig>
| Modifier and Type | Method and Description |
|---|---|
LaunchConfig.Builder |
command(Collection<String> command)
If you've specified
General as the value for your RobotSoftwareSuite, you can use
this field to specify a list of commands for your container image. |
LaunchConfig.Builder |
command(String... command)
If you've specified
General as the value for your RobotSoftwareSuite, you can use
this field to specify a list of commands for your container image. |
LaunchConfig.Builder |
environmentVariables(Map<String,String> environmentVariables)
The environment variables for the application launch.
|
LaunchConfig.Builder |
launchFile(String launchFile)
The launch file name.
|
LaunchConfig.Builder |
packageName(String packageName)
The package name.
|
default LaunchConfig.Builder |
portForwardingConfig(Consumer<PortForwardingConfig.Builder> portForwardingConfig)
The port forwarding configuration.
|
LaunchConfig.Builder |
portForwardingConfig(PortForwardingConfig portForwardingConfig)
The port forwarding configuration.
|
LaunchConfig.Builder |
streamUI(Boolean streamUI)
Boolean indicating whether a streaming session will be configured for the application.
|
equalsBySdkFields, sdkFieldscopyapplyMutation, buildLaunchConfig.Builder packageName(String packageName)
The package name.
packageName - The package name.LaunchConfig.Builder launchFile(String launchFile)
The launch file name.
launchFile - The launch file name.LaunchConfig.Builder environmentVariables(Map<String,String> environmentVariables)
The environment variables for the application launch.
environmentVariables - The environment variables for the application launch.LaunchConfig.Builder portForwardingConfig(PortForwardingConfig portForwardingConfig)
The port forwarding configuration.
portForwardingConfig - The port forwarding configuration.default LaunchConfig.Builder portForwardingConfig(Consumer<PortForwardingConfig.Builder> portForwardingConfig)
The port forwarding configuration.
This is a convenience method that creates an instance of thePortForwardingConfig.Builder avoiding
the need to create one manually via PortForwardingConfig.builder().
When the Consumer completes, SdkBuilder.build() is called immediately and
its result is passed to portForwardingConfig(PortForwardingConfig).
portForwardingConfig - a consumer that will call methods on PortForwardingConfig.BuilderportForwardingConfig(PortForwardingConfig)LaunchConfig.Builder streamUI(Boolean streamUI)
Boolean indicating whether a streaming session will be configured for the application. If True,
AWS RoboMaker will configure a connection so you can interact with your application as it is running in the
simulation. You must configure and launch the component. It must have a graphical user interface.
streamUI - Boolean indicating whether a streaming session will be configured for the application. If
True, AWS RoboMaker will configure a connection so you can interact with your application
as it is running in the simulation. You must configure and launch the component. It must have a
graphical user interface.LaunchConfig.Builder command(Collection<String> command)
If you've specified General as the value for your RobotSoftwareSuite, you can use
this field to specify a list of commands for your container image.
If you've specified SimulationRuntime as the value for your SimulationSoftwareSuite
, you can use this field to specify a list of commands for your container image.
command - If you've specified General as the value for your RobotSoftwareSuite, you
can use this field to specify a list of commands for your container image.
If you've specified SimulationRuntime as the value for your
SimulationSoftwareSuite, you can use this field to specify a list of commands for your
container image.
LaunchConfig.Builder command(String... command)
If you've specified General as the value for your RobotSoftwareSuite, you can use
this field to specify a list of commands for your container image.
If you've specified SimulationRuntime as the value for your SimulationSoftwareSuite
, you can use this field to specify a list of commands for your container image.
command - If you've specified General as the value for your RobotSoftwareSuite, you
can use this field to specify a list of commands for your container image.
If you've specified SimulationRuntime as the value for your
SimulationSoftwareSuite, you can use this field to specify a list of commands for your
container image.
Copyright © 2022. All rights reserved.