All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.amazonaws.services.neptune.model.DBClusterMember Maven / Gradle / Ivy

Go to download

The AWS Java SDK for Amazon Neptune module holds the client classes that are used for communicating with Amazon Neptune Service

The newest version!
/*
 * 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.neptune.model;

import java.io.Serializable;
import javax.annotation.Generated;

/**
 * 

* Contains information about an instance that is part of a DB cluster. *

* * @see AWS API * Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class DBClusterMember implements Serializable, Cloneable { /** *

* Specifies the instance identifier for this member of the DB cluster. *

*/ private String dBInstanceIdentifier; /** *

* Value that is true if the cluster member is the primary instance for the DB cluster and * false otherwise. *

*/ private Boolean isClusterWriter; /** *

* Specifies the status of the DB cluster parameter group for this member of the DB cluster. *

*/ private String dBClusterParameterGroupStatus; /** *

* A value that specifies the order in which a Read Replica is promoted to the primary instance after a failure of * the existing primary instance. *

*/ private Integer promotionTier; /** *

* Specifies the instance identifier for this member of the DB cluster. *

* * @param dBInstanceIdentifier * Specifies the instance identifier for this member of the DB cluster. */ public void setDBInstanceIdentifier(String dBInstanceIdentifier) { this.dBInstanceIdentifier = dBInstanceIdentifier; } /** *

* Specifies the instance identifier for this member of the DB cluster. *

* * @return Specifies the instance identifier for this member of the DB cluster. */ public String getDBInstanceIdentifier() { return this.dBInstanceIdentifier; } /** *

* Specifies the instance identifier for this member of the DB cluster. *

* * @param dBInstanceIdentifier * Specifies the instance identifier for this member of the DB cluster. * @return Returns a reference to this object so that method calls can be chained together. */ public DBClusterMember withDBInstanceIdentifier(String dBInstanceIdentifier) { setDBInstanceIdentifier(dBInstanceIdentifier); return this; } /** *

* Value that is true if the cluster member is the primary instance for the DB cluster and * false otherwise. *

* * @param isClusterWriter * Value that is true if the cluster member is the primary instance for the DB cluster and * false otherwise. */ public void setIsClusterWriter(Boolean isClusterWriter) { this.isClusterWriter = isClusterWriter; } /** *

* Value that is true if the cluster member is the primary instance for the DB cluster and * false otherwise. *

* * @return Value that is true if the cluster member is the primary instance for the DB cluster and * false otherwise. */ public Boolean getIsClusterWriter() { return this.isClusterWriter; } /** *

* Value that is true if the cluster member is the primary instance for the DB cluster and * false otherwise. *

* * @param isClusterWriter * Value that is true if the cluster member is the primary instance for the DB cluster and * false otherwise. * @return Returns a reference to this object so that method calls can be chained together. */ public DBClusterMember withIsClusterWriter(Boolean isClusterWriter) { setIsClusterWriter(isClusterWriter); return this; } /** *

* Value that is true if the cluster member is the primary instance for the DB cluster and * false otherwise. *

* * @return Value that is true if the cluster member is the primary instance for the DB cluster and * false otherwise. */ public Boolean isClusterWriter() { return this.isClusterWriter; } /** *

* Specifies the status of the DB cluster parameter group for this member of the DB cluster. *

* * @param dBClusterParameterGroupStatus * Specifies the status of the DB cluster parameter group for this member of the DB cluster. */ public void setDBClusterParameterGroupStatus(String dBClusterParameterGroupStatus) { this.dBClusterParameterGroupStatus = dBClusterParameterGroupStatus; } /** *

* Specifies the status of the DB cluster parameter group for this member of the DB cluster. *

* * @return Specifies the status of the DB cluster parameter group for this member of the DB cluster. */ public String getDBClusterParameterGroupStatus() { return this.dBClusterParameterGroupStatus; } /** *

* Specifies the status of the DB cluster parameter group for this member of the DB cluster. *

* * @param dBClusterParameterGroupStatus * Specifies the status of the DB cluster parameter group for this member of the DB cluster. * @return Returns a reference to this object so that method calls can be chained together. */ public DBClusterMember withDBClusterParameterGroupStatus(String dBClusterParameterGroupStatus) { setDBClusterParameterGroupStatus(dBClusterParameterGroupStatus); return this; } /** *

* A value that specifies the order in which a Read Replica is promoted to the primary instance after a failure of * the existing primary instance. *

* * @param promotionTier * A value that specifies the order in which a Read Replica is promoted to the primary instance after a * failure of the existing primary instance. */ public void setPromotionTier(Integer promotionTier) { this.promotionTier = promotionTier; } /** *

* A value that specifies the order in which a Read Replica is promoted to the primary instance after a failure of * the existing primary instance. *

* * @return A value that specifies the order in which a Read Replica is promoted to the primary instance after a * failure of the existing primary instance. */ public Integer getPromotionTier() { return this.promotionTier; } /** *

* A value that specifies the order in which a Read Replica is promoted to the primary instance after a failure of * the existing primary instance. *

* * @param promotionTier * A value that specifies the order in which a Read Replica is promoted to the primary instance after a * failure of the existing primary instance. * @return Returns a reference to this object so that method calls can be chained together. */ public DBClusterMember withPromotionTier(Integer promotionTier) { setPromotionTier(promotionTier); 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 (getDBInstanceIdentifier() != null) sb.append("DBInstanceIdentifier: ").append(getDBInstanceIdentifier()).append(","); if (getIsClusterWriter() != null) sb.append("IsClusterWriter: ").append(getIsClusterWriter()).append(","); if (getDBClusterParameterGroupStatus() != null) sb.append("DBClusterParameterGroupStatus: ").append(getDBClusterParameterGroupStatus()).append(","); if (getPromotionTier() != null) sb.append("PromotionTier: ").append(getPromotionTier()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof DBClusterMember == false) return false; DBClusterMember other = (DBClusterMember) obj; if (other.getDBInstanceIdentifier() == null ^ this.getDBInstanceIdentifier() == null) return false; if (other.getDBInstanceIdentifier() != null && other.getDBInstanceIdentifier().equals(this.getDBInstanceIdentifier()) == false) return false; if (other.getIsClusterWriter() == null ^ this.getIsClusterWriter() == null) return false; if (other.getIsClusterWriter() != null && other.getIsClusterWriter().equals(this.getIsClusterWriter()) == false) return false; if (other.getDBClusterParameterGroupStatus() == null ^ this.getDBClusterParameterGroupStatus() == null) return false; if (other.getDBClusterParameterGroupStatus() != null && other.getDBClusterParameterGroupStatus().equals(this.getDBClusterParameterGroupStatus()) == false) return false; if (other.getPromotionTier() == null ^ this.getPromotionTier() == null) return false; if (other.getPromotionTier() != null && other.getPromotionTier().equals(this.getPromotionTier()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getDBInstanceIdentifier() == null) ? 0 : getDBInstanceIdentifier().hashCode()); hashCode = prime * hashCode + ((getIsClusterWriter() == null) ? 0 : getIsClusterWriter().hashCode()); hashCode = prime * hashCode + ((getDBClusterParameterGroupStatus() == null) ? 0 : getDBClusterParameterGroupStatus().hashCode()); hashCode = prime * hashCode + ((getPromotionTier() == null) ? 0 : getPromotionTier().hashCode()); return hashCode; } @Override public DBClusterMember clone() { try { return (DBClusterMember) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy