Interface SimulationApplicationSummary.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<SimulationApplicationSummary.Builder,SimulationApplicationSummary>,SdkBuilder<SimulationApplicationSummary.Builder,SimulationApplicationSummary>,SdkPojo
- Enclosing class:
- SimulationApplicationSummary
public static interface SimulationApplicationSummary.Builder extends SdkPojo, CopyableBuilder<SimulationApplicationSummary.Builder,SimulationApplicationSummary>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description SimulationApplicationSummary.Builderarn(String arn)The Amazon Resource Name (ARN) of the simulation application.SimulationApplicationSummary.BuilderlastUpdatedAt(Instant lastUpdatedAt)The time, in milliseconds since the epoch, when the simulation application was last updated.SimulationApplicationSummary.Buildername(String name)The name of the simulation application.default SimulationApplicationSummary.BuilderrobotSoftwareSuite(Consumer<RobotSoftwareSuite.Builder> robotSoftwareSuite)Information about a robot software suite (ROS distribution).SimulationApplicationSummary.BuilderrobotSoftwareSuite(RobotSoftwareSuite robotSoftwareSuite)Information about a robot software suite (ROS distribution).default SimulationApplicationSummary.BuildersimulationSoftwareSuite(Consumer<SimulationSoftwareSuite.Builder> simulationSoftwareSuite)Information about a simulation software suite.SimulationApplicationSummary.BuildersimulationSoftwareSuite(SimulationSoftwareSuite simulationSoftwareSuite)Information about a simulation software suite.SimulationApplicationSummary.Builderversion(String version)The version of the simulation application.-
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
-
name
SimulationApplicationSummary.Builder name(String name)
The name of the simulation application.
- Parameters:
name- The name of the simulation application.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
arn
SimulationApplicationSummary.Builder arn(String arn)
The Amazon Resource Name (ARN) of the simulation application.
- Parameters:
arn- The Amazon Resource Name (ARN) of the simulation application.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
version
SimulationApplicationSummary.Builder version(String version)
The version of the simulation application.
- Parameters:
version- The version of the simulation application.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lastUpdatedAt
SimulationApplicationSummary.Builder lastUpdatedAt(Instant lastUpdatedAt)
The time, in milliseconds since the epoch, when the simulation application was last updated.
- Parameters:
lastUpdatedAt- The time, in milliseconds since the epoch, when the simulation application was last updated.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
robotSoftwareSuite
SimulationApplicationSummary.Builder robotSoftwareSuite(RobotSoftwareSuite robotSoftwareSuite)
Information about a robot software suite (ROS distribution).
- Parameters:
robotSoftwareSuite- Information about a robot software suite (ROS distribution).- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
robotSoftwareSuite
default SimulationApplicationSummary.Builder robotSoftwareSuite(Consumer<RobotSoftwareSuite.Builder> robotSoftwareSuite)
Information about a robot software suite (ROS distribution).
This is a convenience method that creates an instance of theRobotSoftwareSuite.Builderavoiding the need to create one manually viaRobotSoftwareSuite.builder().When the
Consumercompletes,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:
robotSoftwareSuite(RobotSoftwareSuite)
-
simulationSoftwareSuite
SimulationApplicationSummary.Builder simulationSoftwareSuite(SimulationSoftwareSuite simulationSoftwareSuite)
Information about a simulation software suite.
- Parameters:
simulationSoftwareSuite- Information about a simulation software suite.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
simulationSoftwareSuite
default SimulationApplicationSummary.Builder simulationSoftwareSuite(Consumer<SimulationSoftwareSuite.Builder> simulationSoftwareSuite)
Information about a simulation software suite.
This is a convenience method that creates an instance of theSimulationSoftwareSuite.Builderavoiding the need to create one manually viaSimulationSoftwareSuite.builder().When the
Consumercompletes,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:
simulationSoftwareSuite(SimulationSoftwareSuite)
-
-