public static interface RobotApplicationConfig.Builder extends SdkPojo, CopyableBuilder<RobotApplicationConfig.Builder,RobotApplicationConfig>
Modifier and Type | Method and Description |
---|---|
RobotApplicationConfig.Builder |
application(String application)
The application information for the robot application.
|
RobotApplicationConfig.Builder |
applicationVersion(String applicationVersion)
The version of the robot application.
|
default RobotApplicationConfig.Builder |
launchConfig(Consumer<LaunchConfig.Builder> launchConfig)
The launch configuration for the robot application.
|
RobotApplicationConfig.Builder |
launchConfig(LaunchConfig launchConfig)
The launch configuration for the robot application.
|
copy
applyMutation, build
RobotApplicationConfig.Builder application(String application)
The application information for the robot application.
application
- The application information for the robot application.RobotApplicationConfig.Builder applicationVersion(String applicationVersion)
The version of the robot application.
applicationVersion
- The version of the robot application.RobotApplicationConfig.Builder launchConfig(LaunchConfig launchConfig)
The launch configuration for the robot application.
launchConfig
- The launch configuration for the robot application.default RobotApplicationConfig.Builder launchConfig(Consumer<LaunchConfig.Builder> launchConfig)
The launch configuration for the robot application.
This is a convenience that creates an instance of theLaunchConfig.Builder
avoiding the need to
create one manually via LaunchConfig.builder()
.
When the Consumer
completes, SdkBuilder.build()
is called immediately and its
result is passed to launchConfig(LaunchConfig)
.launchConfig
- a consumer that will call methods on LaunchConfig.Builder
launchConfig(LaunchConfig)
Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.