Interface DescribeFleetResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<DescribeFleetResponse.Builder,DescribeFleetResponse>,RoboMakerResponse.Builder,SdkBuilder<DescribeFleetResponse.Builder,DescribeFleetResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- DescribeFleetResponse
public static interface DescribeFleetResponse.Builder extends RoboMakerResponse.Builder, SdkPojo, CopyableBuilder<DescribeFleetResponse.Builder,DescribeFleetResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DescribeFleetResponse.Builderarn(String arn)The Amazon Resource Name (ARN) of the fleet.DescribeFleetResponse.BuildercreatedAt(Instant createdAt)The time, in milliseconds since the epoch, when the fleet was created.DescribeFleetResponse.BuilderlastDeploymentJob(String lastDeploymentJob)The Amazon Resource Name (ARN) of the last deployment job.DescribeFleetResponse.BuilderlastDeploymentStatus(String lastDeploymentStatus)The status of the last deployment.DescribeFleetResponse.BuilderlastDeploymentStatus(DeploymentStatus lastDeploymentStatus)The status of the last deployment.DescribeFleetResponse.BuilderlastDeploymentTime(Instant lastDeploymentTime)The time of the last deployment.DescribeFleetResponse.Buildername(String name)The name of the fleet.DescribeFleetResponse.Builderrobots(Collection<Robot> robots)A list of robots.DescribeFleetResponse.Builderrobots(Consumer<Robot.Builder>... robots)A list of robots.DescribeFleetResponse.Builderrobots(Robot... robots)A list of robots.DescribeFleetResponse.Buildertags(Map<String,String> tags)The list of all tags added to the specified fleet.-
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
-
name
DescribeFleetResponse.Builder name(String name)
The name of the fleet.
- Parameters:
name- The name of the fleet.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
arn
DescribeFleetResponse.Builder arn(String arn)
The Amazon Resource Name (ARN) of the fleet.
- Parameters:
arn- The Amazon Resource Name (ARN) of the fleet.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
robots
DescribeFleetResponse.Builder robots(Collection<Robot> robots)
A list of robots.
- Parameters:
robots- A list of robots.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
robots
DescribeFleetResponse.Builder robots(Robot... robots)
A list of robots.
- Parameters:
robots- A list of robots.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
robots
DescribeFleetResponse.Builder robots(Consumer<Robot.Builder>... robots)
A list of robots.
This is a convenience method that creates an instance of theRobot.Builderavoiding the need to create one manually viaRobot.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#robots(List.) - Parameters:
robots- a consumer that will call methods onRobot.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#robots(java.util.Collection)
-
createdAt
DescribeFleetResponse.Builder createdAt(Instant createdAt)
The time, in milliseconds since the epoch, when the fleet was created.
- Parameters:
createdAt- The time, in milliseconds since the epoch, when the fleet was created.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lastDeploymentStatus
DescribeFleetResponse.Builder lastDeploymentStatus(String lastDeploymentStatus)
The status of the last deployment.
- Parameters:
lastDeploymentStatus- The status of the last deployment.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
DeploymentStatus,DeploymentStatus
-
lastDeploymentStatus
DescribeFleetResponse.Builder lastDeploymentStatus(DeploymentStatus lastDeploymentStatus)
The status of the last deployment.
- Parameters:
lastDeploymentStatus- The status of the last deployment.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
DeploymentStatus,DeploymentStatus
-
lastDeploymentJob
DescribeFleetResponse.Builder lastDeploymentJob(String lastDeploymentJob)
The Amazon Resource Name (ARN) of the last deployment job.
- Parameters:
lastDeploymentJob- The Amazon Resource Name (ARN) of the last deployment job.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lastDeploymentTime
DescribeFleetResponse.Builder lastDeploymentTime(Instant lastDeploymentTime)
The time of the last deployment.
- Parameters:
lastDeploymentTime- The time of the last deployment.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
DescribeFleetResponse.Builder tags(Map<String,String> tags)
The list of all tags added to the specified fleet.
- Parameters:
tags- The list of all tags added to the specified fleet.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-