com.amazonaws.services.ssmincidents.model.RegionInfo Maven / Gradle / Ivy
Show all versions of aws-java-sdk-ssmincidents Show documentation
/*
* Copyright 2019-2024 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.ssmincidents.model;
import java.io.Serializable;
import javax.annotation.Generated;
import com.amazonaws.protocol.StructuredPojo;
import com.amazonaws.protocol.ProtocolMarshaller;
/**
*
* Information about a Amazon Web Services Region in your replication set.
*
*
* @see AWS API
* Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class RegionInfo implements Serializable, Cloneable, StructuredPojo {
/**
*
* The ID of the KMS key used to encrypt the data in this Amazon Web Services Region.
*
*/
private String sseKmsKeyId;
/**
*
* The status of the Amazon Web Services Region in the replication set.
*
*/
private String status;
/**
*
* Information displayed about the status of the Amazon Web Services Region.
*
*/
private String statusMessage;
/**
*
* The timestamp for when Incident Manager updated the status of the Amazon Web Services Region.
*
*/
private java.util.Date statusUpdateDateTime;
/**
*
* The ID of the KMS key used to encrypt the data in this Amazon Web Services Region.
*
*
* @param sseKmsKeyId
* The ID of the KMS key used to encrypt the data in this Amazon Web Services Region.
*/
public void setSseKmsKeyId(String sseKmsKeyId) {
this.sseKmsKeyId = sseKmsKeyId;
}
/**
*
* The ID of the KMS key used to encrypt the data in this Amazon Web Services Region.
*
*
* @return The ID of the KMS key used to encrypt the data in this Amazon Web Services Region.
*/
public String getSseKmsKeyId() {
return this.sseKmsKeyId;
}
/**
*
* The ID of the KMS key used to encrypt the data in this Amazon Web Services Region.
*
*
* @param sseKmsKeyId
* The ID of the KMS key used to encrypt the data in this Amazon Web Services Region.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public RegionInfo withSseKmsKeyId(String sseKmsKeyId) {
setSseKmsKeyId(sseKmsKeyId);
return this;
}
/**
*
* The status of the Amazon Web Services Region in the replication set.
*
*
* @param status
* The status of the Amazon Web Services Region in the replication set.
* @see RegionStatus
*/
public void setStatus(String status) {
this.status = status;
}
/**
*
* The status of the Amazon Web Services Region in the replication set.
*
*
* @return The status of the Amazon Web Services Region in the replication set.
* @see RegionStatus
*/
public String getStatus() {
return this.status;
}
/**
*
* The status of the Amazon Web Services Region in the replication set.
*
*
* @param status
* The status of the Amazon Web Services Region in the replication set.
* @return Returns a reference to this object so that method calls can be chained together.
* @see RegionStatus
*/
public RegionInfo withStatus(String status) {
setStatus(status);
return this;
}
/**
*
* The status of the Amazon Web Services Region in the replication set.
*
*
* @param status
* The status of the Amazon Web Services Region in the replication set.
* @return Returns a reference to this object so that method calls can be chained together.
* @see RegionStatus
*/
public RegionInfo withStatus(RegionStatus status) {
this.status = status.toString();
return this;
}
/**
*
* Information displayed about the status of the Amazon Web Services Region.
*
*
* @param statusMessage
* Information displayed about the status of the Amazon Web Services Region.
*/
public void setStatusMessage(String statusMessage) {
this.statusMessage = statusMessage;
}
/**
*
* Information displayed about the status of the Amazon Web Services Region.
*
*
* @return Information displayed about the status of the Amazon Web Services Region.
*/
public String getStatusMessage() {
return this.statusMessage;
}
/**
*
* Information displayed about the status of the Amazon Web Services Region.
*
*
* @param statusMessage
* Information displayed about the status of the Amazon Web Services Region.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public RegionInfo withStatusMessage(String statusMessage) {
setStatusMessage(statusMessage);
return this;
}
/**
*
* The timestamp for when Incident Manager updated the status of the Amazon Web Services Region.
*
*
* @param statusUpdateDateTime
* The timestamp for when Incident Manager updated the status of the Amazon Web Services Region.
*/
public void setStatusUpdateDateTime(java.util.Date statusUpdateDateTime) {
this.statusUpdateDateTime = statusUpdateDateTime;
}
/**
*
* The timestamp for when Incident Manager updated the status of the Amazon Web Services Region.
*
*
* @return The timestamp for when Incident Manager updated the status of the Amazon Web Services Region.
*/
public java.util.Date getStatusUpdateDateTime() {
return this.statusUpdateDateTime;
}
/**
*
* The timestamp for when Incident Manager updated the status of the Amazon Web Services Region.
*
*
* @param statusUpdateDateTime
* The timestamp for when Incident Manager updated the status of the Amazon Web Services Region.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public RegionInfo withStatusUpdateDateTime(java.util.Date statusUpdateDateTime) {
setStatusUpdateDateTime(statusUpdateDateTime);
return this;
}
/**
* Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be
* redacted from this string using a placeholder value.
*
* @return A string representation of this object.
*
* @see java.lang.Object#toString()
*/
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("{");
if (getSseKmsKeyId() != null)
sb.append("SseKmsKeyId: ").append(getSseKmsKeyId()).append(",");
if (getStatus() != null)
sb.append("Status: ").append(getStatus()).append(",");
if (getStatusMessage() != null)
sb.append("StatusMessage: ").append(getStatusMessage()).append(",");
if (getStatusUpdateDateTime() != null)
sb.append("StatusUpdateDateTime: ").append(getStatusUpdateDateTime());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof RegionInfo == false)
return false;
RegionInfo other = (RegionInfo) obj;
if (other.getSseKmsKeyId() == null ^ this.getSseKmsKeyId() == null)
return false;
if (other.getSseKmsKeyId() != null && other.getSseKmsKeyId().equals(this.getSseKmsKeyId()) == false)
return false;
if (other.getStatus() == null ^ this.getStatus() == null)
return false;
if (other.getStatus() != null && other.getStatus().equals(this.getStatus()) == false)
return false;
if (other.getStatusMessage() == null ^ this.getStatusMessage() == null)
return false;
if (other.getStatusMessage() != null && other.getStatusMessage().equals(this.getStatusMessage()) == false)
return false;
if (other.getStatusUpdateDateTime() == null ^ this.getStatusUpdateDateTime() == null)
return false;
if (other.getStatusUpdateDateTime() != null && other.getStatusUpdateDateTime().equals(this.getStatusUpdateDateTime()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getSseKmsKeyId() == null) ? 0 : getSseKmsKeyId().hashCode());
hashCode = prime * hashCode + ((getStatus() == null) ? 0 : getStatus().hashCode());
hashCode = prime * hashCode + ((getStatusMessage() == null) ? 0 : getStatusMessage().hashCode());
hashCode = prime * hashCode + ((getStatusUpdateDateTime() == null) ? 0 : getStatusUpdateDateTime().hashCode());
return hashCode;
}
@Override
public RegionInfo clone() {
try {
return (RegionInfo) super.clone();
} catch (CloneNotSupportedException e) {
throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e);
}
}
@com.amazonaws.annotation.SdkInternalApi
@Override
public void marshall(ProtocolMarshaller protocolMarshaller) {
com.amazonaws.services.ssmincidents.model.transform.RegionInfoMarshaller.getInstance().marshall(this, protocolMarshaller);
}
}