public static interface SimulationApplicationConfig.Builder extends SdkPojo, CopyableBuilder<SimulationApplicationConfig.Builder,SimulationApplicationConfig>
Modifier and Type | Method and Description |
---|---|
SimulationApplicationConfig.Builder |
application(String application)
The application information for the simulation application.
|
SimulationApplicationConfig.Builder |
applicationVersion(String applicationVersion)
The version of the simulation application.
|
default SimulationApplicationConfig.Builder |
launchConfig(Consumer<LaunchConfig.Builder> launchConfig)
The launch configuration for the simulation application.
|
SimulationApplicationConfig.Builder |
launchConfig(LaunchConfig launchConfig)
The launch configuration for the simulation application.
|
copy
applyMutation, build
SimulationApplicationConfig.Builder application(String application)
The application information for the simulation application.
application
- The application information for the simulation application.SimulationApplicationConfig.Builder applicationVersion(String applicationVersion)
The version of the simulation application.
applicationVersion
- The version of the simulation application.SimulationApplicationConfig.Builder launchConfig(LaunchConfig launchConfig)
The launch configuration for the simulation application.
launchConfig
- The launch configuration for the simulation application.default SimulationApplicationConfig.Builder launchConfig(Consumer<LaunchConfig.Builder> launchConfig)
The launch configuration for the simulation 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.