/* * Copyright 2010-2023 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ package com.amazonaws.services.connect.model; import java.io.Serializable; import com.amazonaws.AmazonWebServiceRequest; /** *
* This API is in preview release for Amazon Connect and is subject to change. *
** Updates agent status. *
*/ public class UpdateAgentStatusRequest extends AmazonWebServiceRequest implements Serializable { /** ** The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the * instance. *
*
* Constraints:
* Length: 1 - 100
*/
private String instanceId;
/**
*
* The identifier of the agent status. *
*/ private String agentStatusId; /** ** The name of the agent status. *
*
* Constraints:
* Length: 1 - 127
*/
private String name;
/**
*
* The description of the agent status. *
*
* Constraints:
* Length: 0 - 250
*/
private String description;
/**
*
* The state of the agent status. *
*
* Constraints:
* Allowed Values: ENABLED, DISABLED
*/
private String state;
/**
*
* The display order of the agent status. *
*
* Constraints:
* Range: 1 - 50
*/
private Integer displayOrder;
/**
*
* A number indicating the reset order of the agent status. *
*/ private Boolean resetOrderNumber; /** ** The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the * instance. *
*
* Constraints:
* Length: 1 - 100
*
* @return
* The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of * the instance. *
*/ public String getInstanceId() { return instanceId; } /** ** The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the * instance. *
*
* Constraints:
* Length: 1 - 100
*
* @param instanceId
* The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of * the instance. *
*/ public void setInstanceId(String instanceId) { this.instanceId = instanceId; } /** ** The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the * instance. *
** Returns a reference to this object so that method calls can be chained * together. *
* Constraints:
* Length: 1 - 100
*
* @param instanceId
* The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of * the instance. *
* @return A reference to this updated object so that method calls can be * chained together. */ public UpdateAgentStatusRequest withInstanceId(String instanceId) { this.instanceId = instanceId; return this; } /** ** The identifier of the agent status. *
* * @return* The identifier of the agent status. *
*/ public String getAgentStatusId() { return agentStatusId; } /** ** The identifier of the agent status. *
* * @param agentStatusId* The identifier of the agent status. *
*/ public void setAgentStatusId(String agentStatusId) { this.agentStatusId = agentStatusId; } /** ** The identifier of the agent status. *
** Returns a reference to this object so that method calls can be chained * together. * * @param agentStatusId
* The identifier of the agent status. *
* @return A reference to this updated object so that method calls can be * chained together. */ public UpdateAgentStatusRequest withAgentStatusId(String agentStatusId) { this.agentStatusId = agentStatusId; return this; } /** ** The name of the agent status. *
*
* Constraints:
* Length: 1 - 127
*
* @return
* The name of the agent status. *
*/ public String getName() { return name; } /** ** The name of the agent status. *
*
* Constraints:
* Length: 1 - 127
*
* @param name
* The name of the agent status. *
*/ public void setName(String name) { this.name = name; } /** ** The name of the agent status. *
** Returns a reference to this object so that method calls can be chained * together. *
* Constraints:
* Length: 1 - 127
*
* @param name
* The name of the agent status. *
* @return A reference to this updated object so that method calls can be * chained together. */ public UpdateAgentStatusRequest withName(String name) { this.name = name; return this; } /** ** The description of the agent status. *
*
* Constraints:
* Length: 0 - 250
*
* @return
* The description of the agent status. *
*/ public String getDescription() { return description; } /** ** The description of the agent status. *
*
* Constraints:
* Length: 0 - 250
*
* @param description
* The description of the agent status. *
*/ public void setDescription(String description) { this.description = description; } /** ** The description of the agent status. *
** Returns a reference to this object so that method calls can be chained * together. *
* Constraints:
* Length: 0 - 250
*
* @param description
* The description of the agent status. *
* @return A reference to this updated object so that method calls can be * chained together. */ public UpdateAgentStatusRequest withDescription(String description) { this.description = description; return this; } /** ** The state of the agent status. *
*
* Constraints:
* Allowed Values: ENABLED, DISABLED
*
* @return
* The state of the agent status. *
* @see AgentStatusState */ public String getState() { return state; } /** ** The state of the agent status. *
*
* Constraints:
* Allowed Values: ENABLED, DISABLED
*
* @param state
* The state of the agent status. *
* @see AgentStatusState */ public void setState(String state) { this.state = state; } /** ** The state of the agent status. *
** Returns a reference to this object so that method calls can be chained * together. *
* Constraints:
* Allowed Values: ENABLED, DISABLED
*
* @param state
* The state of the agent status. *
* @return A reference to this updated object so that method calls can be * chained together. * @see AgentStatusState */ public UpdateAgentStatusRequest withState(String state) { this.state = state; return this; } /** ** The state of the agent status. *
*
* Constraints:
* Allowed Values: ENABLED, DISABLED
*
* @param state
* The state of the agent status. *
* @see AgentStatusState */ public void setState(AgentStatusState state) { this.state = state.toString(); } /** ** The state of the agent status. *
** Returns a reference to this object so that method calls can be chained * together. *
* Constraints:
* Allowed Values: ENABLED, DISABLED
*
* @param state
* The state of the agent status. *
* @return A reference to this updated object so that method calls can be * chained together. * @see AgentStatusState */ public UpdateAgentStatusRequest withState(AgentStatusState state) { this.state = state.toString(); return this; } /** ** The display order of the agent status. *
*
* Constraints:
* Range: 1 - 50
*
* @return
* The display order of the agent status. *
*/ public Integer getDisplayOrder() { return displayOrder; } /** ** The display order of the agent status. *
*
* Constraints:
* Range: 1 - 50
*
* @param displayOrder
* The display order of the agent status. *
*/ public void setDisplayOrder(Integer displayOrder) { this.displayOrder = displayOrder; } /** ** The display order of the agent status. *
** Returns a reference to this object so that method calls can be chained * together. *
* Constraints:
* Range: 1 - 50
*
* @param displayOrder
* The display order of the agent status. *
* @return A reference to this updated object so that method calls can be * chained together. */ public UpdateAgentStatusRequest withDisplayOrder(Integer displayOrder) { this.displayOrder = displayOrder; return this; } /** ** A number indicating the reset order of the agent status. *
* * @return* A number indicating the reset order of the agent status. *
*/ public Boolean isResetOrderNumber() { return resetOrderNumber; } /** ** A number indicating the reset order of the agent status. *
* * @return* A number indicating the reset order of the agent status. *
*/ public Boolean getResetOrderNumber() { return resetOrderNumber; } /** ** A number indicating the reset order of the agent status. *
* * @param resetOrderNumber* A number indicating the reset order of the agent status. *
*/ public void setResetOrderNumber(Boolean resetOrderNumber) { this.resetOrderNumber = resetOrderNumber; } /** ** A number indicating the reset order of the agent status. *
** Returns a reference to this object so that method calls can be chained * together. * * @param resetOrderNumber
* A number indicating the reset order of the agent status. *
* @return A reference to this updated object so that method calls can be * chained together. */ public UpdateAgentStatusRequest withResetOrderNumber(Boolean resetOrderNumber) { this.resetOrderNumber = resetOrderNumber; return this; } /** * Returns a string representation of this object; useful for testing and * debugging. * * @return A string representation of this object. * @see java.lang.Object#toString() */ @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("{"); if (getInstanceId() != null) sb.append("InstanceId: " + getInstanceId() + ","); if (getAgentStatusId() != null) sb.append("AgentStatusId: " + getAgentStatusId() + ","); if (getName() != null) sb.append("Name: " + getName() + ","); if (getDescription() != null) sb.append("Description: " + getDescription() + ","); if (getState() != null) sb.append("State: " + getState() + ","); if (getDisplayOrder() != null) sb.append("DisplayOrder: " + getDisplayOrder() + ","); if (getResetOrderNumber() != null) sb.append("ResetOrderNumber: " + getResetOrderNumber()); sb.append("}"); return sb.toString(); } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getInstanceId() == null) ? 0 : getInstanceId().hashCode()); hashCode = prime * hashCode + ((getAgentStatusId() == null) ? 0 : getAgentStatusId().hashCode()); hashCode = prime * hashCode + ((getName() == null) ? 0 : getName().hashCode()); hashCode = prime * hashCode + ((getDescription() == null) ? 0 : getDescription().hashCode()); hashCode = prime * hashCode + ((getState() == null) ? 0 : getState().hashCode()); hashCode = prime * hashCode + ((getDisplayOrder() == null) ? 0 : getDisplayOrder().hashCode()); hashCode = prime * hashCode + ((getResetOrderNumber() == null) ? 0 : getResetOrderNumber().hashCode()); return hashCode; } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof UpdateAgentStatusRequest == false) return false; UpdateAgentStatusRequest other = (UpdateAgentStatusRequest) obj; if (other.getInstanceId() == null ^ this.getInstanceId() == null) return false; if (other.getInstanceId() != null && other.getInstanceId().equals(this.getInstanceId()) == false) return false; if (other.getAgentStatusId() == null ^ this.getAgentStatusId() == null) return false; if (other.getAgentStatusId() != null && other.getAgentStatusId().equals(this.getAgentStatusId()) == false) return false; if (other.getName() == null ^ this.getName() == null) return false; if (other.getName() != null && other.getName().equals(this.getName()) == false) return false; if (other.getDescription() == null ^ this.getDescription() == null) return false; if (other.getDescription() != null && other.getDescription().equals(this.getDescription()) == false) return false; if (other.getState() == null ^ this.getState() == null) return false; if (other.getState() != null && other.getState().equals(this.getState()) == false) return false; if (other.getDisplayOrder() == null ^ this.getDisplayOrder() == null) return false; if (other.getDisplayOrder() != null && other.getDisplayOrder().equals(this.getDisplayOrder()) == false) return false; if (other.getResetOrderNumber() == null ^ this.getResetOrderNumber() == null) return false; if (other.getResetOrderNumber() != null && other.getResetOrderNumber().equals(this.getResetOrderNumber()) == false) return false; return true; } }