Interface RobotApplicationSummary.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<RobotApplicationSummary.Builder,RobotApplicationSummary>,SdkBuilder<RobotApplicationSummary.Builder,RobotApplicationSummary>,SdkPojo
- Enclosing class:
- RobotApplicationSummary
public static interface RobotApplicationSummary.Builder extends SdkPojo, CopyableBuilder<RobotApplicationSummary.Builder,RobotApplicationSummary>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description RobotApplicationSummary.Builderarn(String arn)The Amazon Resource Name (ARN) of the robot.RobotApplicationSummary.BuilderlastUpdatedAt(Instant lastUpdatedAt)The time, in milliseconds since the epoch, when the robot application was last updated.RobotApplicationSummary.Buildername(String name)The name of the robot application.default RobotApplicationSummary.BuilderrobotSoftwareSuite(Consumer<RobotSoftwareSuite.Builder> robotSoftwareSuite)Information about a robot software suite (ROS distribution).RobotApplicationSummary.BuilderrobotSoftwareSuite(RobotSoftwareSuite robotSoftwareSuite)Information about a robot software suite (ROS distribution).RobotApplicationSummary.Builderversion(String version)The version of the robot 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
RobotApplicationSummary.Builder name(String name)
The name of the robot application.
- Parameters:
name- The name of the robot application.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
arn
RobotApplicationSummary.Builder arn(String arn)
The Amazon Resource Name (ARN) of the robot.
- Parameters:
arn- The Amazon Resource Name (ARN) of the robot.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
version
RobotApplicationSummary.Builder version(String version)
The version of the robot application.
- Parameters:
version- The version of the robot application.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lastUpdatedAt
RobotApplicationSummary.Builder lastUpdatedAt(Instant lastUpdatedAt)
The time, in milliseconds since the epoch, when the robot application was last updated.
- Parameters:
lastUpdatedAt- The time, in milliseconds since the epoch, when the robot application was last updated.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
robotSoftwareSuite
RobotApplicationSummary.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 RobotApplicationSummary.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)
-
-