* The Amazon Resource Name (ARN) of the robot. *
*/ private String arn; /** ** The name of the robot. *
*/ private String name; /** ** The Amazon Resource Name (ARN) of the fleet. *
*/ private String fleetArn; /** ** The status of the fleet. *
*/ private String status; /** ** The Greengrass group id. *
*/ private String greengrassGroupId; /** ** The time, in milliseconds since the epoch, when the robot was created. *
*/ private java.util.Date createdAt; /** ** The target architecture of the robot application. *
*/ private String architecture; /** ** The Amazon Resource Name (ARN) of the last deployment job. *
*/ private String lastDeploymentJob; /** ** The time of the last deployment job. *
*/ private java.util.Date lastDeploymentTime; /** ** The list of all tags added to the specified robot. *
*/ private java.util.Map* The Amazon Resource Name (ARN) of the robot. *
* * @param arn * The Amazon Resource Name (ARN) of the robot. */ public void setArn(String arn) { this.arn = arn; } /** ** The Amazon Resource Name (ARN) of the robot. *
* * @return The Amazon Resource Name (ARN) of the robot. */ public String getArn() { return this.arn; } /** ** The Amazon Resource Name (ARN) of the robot. *
* * @param arn * The Amazon Resource Name (ARN) of the robot. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeRobotResult withArn(String arn) { setArn(arn); return this; } /** ** The name of the robot. *
* * @param name * The name of the robot. */ public void setName(String name) { this.name = name; } /** ** The name of the robot. *
* * @return The name of the robot. */ public String getName() { return this.name; } /** ** The name of the robot. *
* * @param name * The name of the robot. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeRobotResult withName(String name) { setName(name); return this; } /** ** The Amazon Resource Name (ARN) of the fleet. *
* * @param fleetArn * The Amazon Resource Name (ARN) of the fleet. */ public void setFleetArn(String fleetArn) { this.fleetArn = fleetArn; } /** ** The Amazon Resource Name (ARN) of the fleet. *
* * @return The Amazon Resource Name (ARN) of the fleet. */ public String getFleetArn() { return this.fleetArn; } /** ** The Amazon Resource Name (ARN) of the fleet. *
* * @param fleetArn * The Amazon Resource Name (ARN) of the fleet. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeRobotResult withFleetArn(String fleetArn) { setFleetArn(fleetArn); return this; } /** ** The status of the fleet. *
* * @param status * The status of the fleet. * @see RobotStatus */ public void setStatus(String status) { this.status = status; } /** ** The status of the fleet. *
* * @return The status of the fleet. * @see RobotStatus */ public String getStatus() { return this.status; } /** ** The status of the fleet. *
* * @param status * The status of the fleet. * @return Returns a reference to this object so that method calls can be chained together. * @see RobotStatus */ public DescribeRobotResult withStatus(String status) { setStatus(status); return this; } /** ** The status of the fleet. *
* * @param status * The status of the fleet. * @return Returns a reference to this object so that method calls can be chained together. * @see RobotStatus */ public DescribeRobotResult withStatus(RobotStatus status) { this.status = status.toString(); return this; } /** ** The Greengrass group id. *
* * @param greengrassGroupId * The Greengrass group id. */ public void setGreengrassGroupId(String greengrassGroupId) { this.greengrassGroupId = greengrassGroupId; } /** ** The Greengrass group id. *
* * @return The Greengrass group id. */ public String getGreengrassGroupId() { return this.greengrassGroupId; } /** ** The Greengrass group id. *
* * @param greengrassGroupId * The Greengrass group id. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeRobotResult withGreengrassGroupId(String greengrassGroupId) { setGreengrassGroupId(greengrassGroupId); return this; } /** ** The time, in milliseconds since the epoch, when the robot was created. *
* * @param createdAt * The time, in milliseconds since the epoch, when the robot was created. */ public void setCreatedAt(java.util.Date createdAt) { this.createdAt = createdAt; } /** ** The time, in milliseconds since the epoch, when the robot was created. *
* * @return The time, in milliseconds since the epoch, when the robot was created. */ public java.util.Date getCreatedAt() { return this.createdAt; } /** ** The time, in milliseconds since the epoch, when the robot was created. *
* * @param createdAt * The time, in milliseconds since the epoch, when the robot was created. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeRobotResult withCreatedAt(java.util.Date createdAt) { setCreatedAt(createdAt); return this; } /** ** The target architecture of the robot application. *
* * @param architecture * The target architecture of the robot application. * @see Architecture */ public void setArchitecture(String architecture) { this.architecture = architecture; } /** ** The target architecture of the robot application. *
* * @return The target architecture of the robot application. * @see Architecture */ public String getArchitecture() { return this.architecture; } /** ** The target architecture of the robot application. *
* * @param architecture * The target architecture of the robot application. * @return Returns a reference to this object so that method calls can be chained together. * @see Architecture */ public DescribeRobotResult withArchitecture(String architecture) { setArchitecture(architecture); return this; } /** ** The target architecture of the robot application. *
* * @param architecture * The target architecture of the robot application. * @return Returns a reference to this object so that method calls can be chained together. * @see Architecture */ public DescribeRobotResult withArchitecture(Architecture architecture) { this.architecture = architecture.toString(); return this; } /** ** The Amazon Resource Name (ARN) of the last deployment job. *
* * @param lastDeploymentJob * The Amazon Resource Name (ARN) of the last deployment job. */ public void setLastDeploymentJob(String lastDeploymentJob) { this.lastDeploymentJob = lastDeploymentJob; } /** ** The Amazon Resource Name (ARN) of the last deployment job. *
* * @return The Amazon Resource Name (ARN) of the last deployment job. */ public String getLastDeploymentJob() { return this.lastDeploymentJob; } /** ** The Amazon Resource Name (ARN) of the last deployment job. *
* * @param lastDeploymentJob * The Amazon Resource Name (ARN) of the last deployment job. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeRobotResult withLastDeploymentJob(String lastDeploymentJob) { setLastDeploymentJob(lastDeploymentJob); return this; } /** ** The time of the last deployment job. *
* * @param lastDeploymentTime * The time of the last deployment job. */ public void setLastDeploymentTime(java.util.Date lastDeploymentTime) { this.lastDeploymentTime = lastDeploymentTime; } /** ** The time of the last deployment job. *
* * @return The time of the last deployment job. */ public java.util.Date getLastDeploymentTime() { return this.lastDeploymentTime; } /** ** The time of the last deployment job. *
* * @param lastDeploymentTime * The time of the last deployment job. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeRobotResult withLastDeploymentTime(java.util.Date lastDeploymentTime) { setLastDeploymentTime(lastDeploymentTime); return this; } /** ** The list of all tags added to the specified robot. *
* * @return The list of all tags added to the specified robot. */ public java.util.Map* The list of all tags added to the specified robot. *
* * @param tags * The list of all tags added to the specified robot. */ public void setTags(java.util.Map* The list of all tags added to the specified robot. *
* * @param tags * The list of all tags added to the specified robot. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeRobotResult withTags(java.util.Map