Interface CreateRobotApplicationVersionResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<CreateRobotApplicationVersionResponse.Builder,CreateRobotApplicationVersionResponse>,RoboMakerResponse.Builder,SdkBuilder<CreateRobotApplicationVersionResponse.Builder,CreateRobotApplicationVersionResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- CreateRobotApplicationVersionResponse
public static interface CreateRobotApplicationVersionResponse.Builder extends RoboMakerResponse.Builder, SdkPojo, CopyableBuilder<CreateRobotApplicationVersionResponse.Builder,CreateRobotApplicationVersionResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description CreateRobotApplicationVersionResponse.Builderarn(String arn)The Amazon Resource Name (ARN) of the robot application.default CreateRobotApplicationVersionResponse.Builderenvironment(Consumer<Environment.Builder> environment)The object that contains the Docker image URI used to create your robot application.CreateRobotApplicationVersionResponse.Builderenvironment(Environment environment)The object that contains the Docker image URI used to create your robot application.CreateRobotApplicationVersionResponse.BuilderlastUpdatedAt(Instant lastUpdatedAt)The time, in milliseconds since the epoch, when the robot application was last updated.CreateRobotApplicationVersionResponse.Buildername(String name)The name of the robot application.CreateRobotApplicationVersionResponse.BuilderrevisionId(String revisionId)The revision id of the robot application.default CreateRobotApplicationVersionResponse.BuilderrobotSoftwareSuite(Consumer<RobotSoftwareSuite.Builder> robotSoftwareSuite)The robot software suite (ROS distribution) used by the robot application.CreateRobotApplicationVersionResponse.BuilderrobotSoftwareSuite(RobotSoftwareSuite robotSoftwareSuite)The robot software suite (ROS distribution) used by the robot application.CreateRobotApplicationVersionResponse.Buildersources(Collection<Source> sources)The sources of the robot application.CreateRobotApplicationVersionResponse.Buildersources(Consumer<Source.Builder>... sources)The sources of the robot application.CreateRobotApplicationVersionResponse.Buildersources(Source... sources)The sources of the robot application.CreateRobotApplicationVersionResponse.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.services.robomaker.model.RoboMakerResponse.Builder
build, responseMetadata, responseMetadata
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
arn
CreateRobotApplicationVersionResponse.Builder arn(String arn)
The Amazon Resource Name (ARN) of the robot application.
- Parameters:
arn- The Amazon Resource Name (ARN) of the robot application.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
name
CreateRobotApplicationVersionResponse.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.
-
version
CreateRobotApplicationVersionResponse.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.
-
sources
CreateRobotApplicationVersionResponse.Builder sources(Collection<Source> sources)
The sources of the robot application.
- Parameters:
sources- The sources of the robot application.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sources
CreateRobotApplicationVersionResponse.Builder sources(Source... sources)
The sources of the robot application.
- Parameters:
sources- The sources of the robot application.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sources
CreateRobotApplicationVersionResponse.Builder sources(Consumer<Source.Builder>... sources)
The sources of the robot application.
This is a convenience method that creates an instance of theSource.Builderavoiding the need to create one manually viaSource.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#sources(List.) - Parameters:
sources- a consumer that will call methods onSource.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#sources(java.util.Collection)
-
robotSoftwareSuite
CreateRobotApplicationVersionResponse.Builder robotSoftwareSuite(RobotSoftwareSuite robotSoftwareSuite)
The robot software suite (ROS distribution) used by the robot application.
- Parameters:
robotSoftwareSuite- The robot software suite (ROS distribution) used by the robot application.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
robotSoftwareSuite
default CreateRobotApplicationVersionResponse.Builder robotSoftwareSuite(Consumer<RobotSoftwareSuite.Builder> robotSoftwareSuite)
The robot software suite (ROS distribution) used by the robot application.
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)
-
lastUpdatedAt
CreateRobotApplicationVersionResponse.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.
-
revisionId
CreateRobotApplicationVersionResponse.Builder revisionId(String revisionId)
The revision id of the robot application.
- Parameters:
revisionId- The revision id of the robot application.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
environment
CreateRobotApplicationVersionResponse.Builder environment(Environment environment)
The object that contains the Docker image URI used to create your robot application.
- Parameters:
environment- The object that contains the Docker image URI used to create your robot application.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
environment
default CreateRobotApplicationVersionResponse.Builder environment(Consumer<Environment.Builder> environment)
The object that contains the Docker image URI used to create your robot application.
This is a convenience method that creates an instance of theEnvironment.Builderavoiding the need to create one manually viaEnvironment.builder().When the
Consumercompletes,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:
environment(Environment)
-
-