Interface UpdateSimulationApplicationRequest.Builder
- All Superinterfaces:
AwsRequest.Builder
,Buildable
,CopyableBuilder<UpdateSimulationApplicationRequest.Builder,
,UpdateSimulationApplicationRequest> RoboMakerRequest.Builder
,SdkBuilder<UpdateSimulationApplicationRequest.Builder,
,UpdateSimulationApplicationRequest> SdkPojo
,SdkRequest.Builder
- Enclosing class:
UpdateSimulationApplicationRequest
-
Method Summary
Modifier and TypeMethodDescriptionapplication
(String application) The application information for the simulation application.currentRevisionId
(String currentRevisionId) The revision id for the robot application.environment
(Consumer<Environment.Builder> environment) The object that contains the Docker image URI for your simulation application.environment
(Environment environment) The object that contains the Docker image URI for your simulation application.overrideConfiguration
(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer) Add an optional request override configuration.overrideConfiguration
(AwsRequestOverrideConfiguration overrideConfiguration) Add an optional request override configuration.renderingEngine
(Consumer<RenderingEngine.Builder> renderingEngine) The rendering engine for the simulation application.renderingEngine
(RenderingEngine renderingEngine) The rendering engine for the simulation application.robotSoftwareSuite
(Consumer<RobotSoftwareSuite.Builder> robotSoftwareSuite) Information about the robot software suite.robotSoftwareSuite
(RobotSoftwareSuite robotSoftwareSuite) Information about the robot software suite.simulationSoftwareSuite
(Consumer<SimulationSoftwareSuite.Builder> simulationSoftwareSuite) The simulation software suite used by the simulation application.simulationSoftwareSuite
(SimulationSoftwareSuite simulationSoftwareSuite) The simulation software suite used by the simulation application.sources
(Collection<SourceConfig> sources) The sources of the simulation application.sources
(Consumer<SourceConfig.Builder>... sources) The sources of the simulation application.sources
(SourceConfig... sources) The sources of the simulation application.Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
Methods inherited from interface software.amazon.awssdk.services.robomaker.model.RoboMakerRequest.Builder
build
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
Method Details
-
application
The application information for the simulation application.
- Parameters:
application
- The application information for the simulation application.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sources
The sources of the simulation application.
- Parameters:
sources
- The sources of the simulation application.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sources
The sources of the simulation application.
- Parameters:
sources
- The sources of the simulation application.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sources
The sources of the simulation application.
This is a convenience method that creates an instance of theSourceConfig.Builder
avoiding the need to create one manually viaSourceConfig.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tosources(List<SourceConfig>)
.- Parameters:
sources
- a consumer that will call methods onSourceConfig.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
simulationSoftwareSuite
UpdateSimulationApplicationRequest.Builder simulationSoftwareSuite(SimulationSoftwareSuite simulationSoftwareSuite) The simulation software suite used by the simulation application.
- Parameters:
simulationSoftwareSuite
- The simulation software suite used by the simulation application.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
simulationSoftwareSuite
default UpdateSimulationApplicationRequest.Builder simulationSoftwareSuite(Consumer<SimulationSoftwareSuite.Builder> simulationSoftwareSuite) The simulation software suite used by the simulation application.
This is a convenience method that creates an instance of theSimulationSoftwareSuite.Builder
avoiding the need to create one manually viaSimulationSoftwareSuite.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tosimulationSoftwareSuite(SimulationSoftwareSuite)
.- Parameters:
simulationSoftwareSuite
- a consumer that will call methods onSimulationSoftwareSuite.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
robotSoftwareSuite
UpdateSimulationApplicationRequest.Builder robotSoftwareSuite(RobotSoftwareSuite robotSoftwareSuite) Information about the robot software suite.
- Parameters:
robotSoftwareSuite
- Information about the robot software suite.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
robotSoftwareSuite
default UpdateSimulationApplicationRequest.Builder robotSoftwareSuite(Consumer<RobotSoftwareSuite.Builder> robotSoftwareSuite) Information about the robot software suite.
This is a convenience method that creates an instance of theRobotSoftwareSuite.Builder
avoiding the need to create one manually viaRobotSoftwareSuite.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed torobotSoftwareSuite(RobotSoftwareSuite)
.- Parameters:
robotSoftwareSuite
- a consumer that will call methods onRobotSoftwareSuite.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
renderingEngine
The rendering engine for the simulation application.
- Parameters:
renderingEngine
- The rendering engine for the simulation application.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
renderingEngine
default UpdateSimulationApplicationRequest.Builder renderingEngine(Consumer<RenderingEngine.Builder> renderingEngine) The rendering engine for the simulation application.
This is a convenience method that creates an instance of theRenderingEngine.Builder
avoiding the need to create one manually viaRenderingEngine.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed torenderingEngine(RenderingEngine)
.- Parameters:
renderingEngine
- a consumer that will call methods onRenderingEngine.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
currentRevisionId
The revision id for the robot application.
- Parameters:
currentRevisionId
- The revision id for the robot application.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
environment
The object that contains the Docker image URI for your simulation application.
- Parameters:
environment
- The object that contains the Docker image URI for your simulation application.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
environment
default UpdateSimulationApplicationRequest.Builder environment(Consumer<Environment.Builder> environment) The object that contains the Docker image URI for your simulation application.
This is a convenience method that creates an instance of theEnvironment.Builder
avoiding the need to create one manually viaEnvironment.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed toenvironment(Environment)
.- Parameters:
environment
- a consumer that will call methods onEnvironment.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
overrideConfiguration
UpdateSimulationApplicationRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration) Description copied from interface:AwsRequest.Builder
Add an optional request override configuration.- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
- Parameters:
overrideConfiguration
- The override configuration.- Returns:
- This object for method chaining.
-
overrideConfiguration
UpdateSimulationApplicationRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer) Description copied from interface:AwsRequest.Builder
Add an optional request override configuration.- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
- Parameters:
builderConsumer
- AConsumer
to which an emptyAwsRequestOverrideConfiguration.Builder
will be given.- Returns:
- This object for method chaining.
-