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

com.amazonaws.services.elasticache.model.GlobalReplicationGroupMember Maven / Gradle / Ivy

Go to download

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

There is a newer version: 1.12.780
Show 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.elasticache.model;

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

/**
 * 

* A member of a Global datastore. It contains the Replication Group Id, the Amazon region and the role of the * replication group. *

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

* The replication group id of the Global datastore member. *

*/ private String replicationGroupId; /** *

* The Amazon region of the Global datastore member. *

*/ private String replicationGroupRegion; /** *

* Indicates the role of the replication group, primary or secondary. *

*/ private String role; /** *

* Indicates whether automatic failover is enabled for the replication group. *

*/ private String automaticFailover; /** *

* The status of the membership of the replication group. *

*/ private String status; /** *

* The replication group id of the Global datastore member. *

* * @param replicationGroupId * The replication group id of the Global datastore member. */ public void setReplicationGroupId(String replicationGroupId) { this.replicationGroupId = replicationGroupId; } /** *

* The replication group id of the Global datastore member. *

* * @return The replication group id of the Global datastore member. */ public String getReplicationGroupId() { return this.replicationGroupId; } /** *

* The replication group id of the Global datastore member. *

* * @param replicationGroupId * The replication group id of the Global datastore member. * @return Returns a reference to this object so that method calls can be chained together. */ public GlobalReplicationGroupMember withReplicationGroupId(String replicationGroupId) { setReplicationGroupId(replicationGroupId); return this; } /** *

* The Amazon region of the Global datastore member. *

* * @param replicationGroupRegion * The Amazon region of the Global datastore member. */ public void setReplicationGroupRegion(String replicationGroupRegion) { this.replicationGroupRegion = replicationGroupRegion; } /** *

* The Amazon region of the Global datastore member. *

* * @return The Amazon region of the Global datastore member. */ public String getReplicationGroupRegion() { return this.replicationGroupRegion; } /** *

* The Amazon region of the Global datastore member. *

* * @param replicationGroupRegion * The Amazon region of the Global datastore member. * @return Returns a reference to this object so that method calls can be chained together. */ public GlobalReplicationGroupMember withReplicationGroupRegion(String replicationGroupRegion) { setReplicationGroupRegion(replicationGroupRegion); return this; } /** *

* Indicates the role of the replication group, primary or secondary. *

* * @param role * Indicates the role of the replication group, primary or secondary. */ public void setRole(String role) { this.role = role; } /** *

* Indicates the role of the replication group, primary or secondary. *

* * @return Indicates the role of the replication group, primary or secondary. */ public String getRole() { return this.role; } /** *

* Indicates the role of the replication group, primary or secondary. *

* * @param role * Indicates the role of the replication group, primary or secondary. * @return Returns a reference to this object so that method calls can be chained together. */ public GlobalReplicationGroupMember withRole(String role) { setRole(role); return this; } /** *

* Indicates whether automatic failover is enabled for the replication group. *

* * @param automaticFailover * Indicates whether automatic failover is enabled for the replication group. * @see AutomaticFailoverStatus */ public void setAutomaticFailover(String automaticFailover) { this.automaticFailover = automaticFailover; } /** *

* Indicates whether automatic failover is enabled for the replication group. *

* * @return Indicates whether automatic failover is enabled for the replication group. * @see AutomaticFailoverStatus */ public String getAutomaticFailover() { return this.automaticFailover; } /** *

* Indicates whether automatic failover is enabled for the replication group. *

* * @param automaticFailover * Indicates whether automatic failover is enabled for the replication group. * @return Returns a reference to this object so that method calls can be chained together. * @see AutomaticFailoverStatus */ public GlobalReplicationGroupMember withAutomaticFailover(String automaticFailover) { setAutomaticFailover(automaticFailover); return this; } /** *

* Indicates whether automatic failover is enabled for the replication group. *

* * @param automaticFailover * Indicates whether automatic failover is enabled for the replication group. * @return Returns a reference to this object so that method calls can be chained together. * @see AutomaticFailoverStatus */ public GlobalReplicationGroupMember withAutomaticFailover(AutomaticFailoverStatus automaticFailover) { this.automaticFailover = automaticFailover.toString(); return this; } /** *

* The status of the membership of the replication group. *

* * @param status * The status of the membership of the replication group. */ public void setStatus(String status) { this.status = status; } /** *

* The status of the membership of the replication group. *

* * @return The status of the membership of the replication group. */ public String getStatus() { return this.status; } /** *

* The status of the membership of the replication group. *

* * @param status * The status of the membership of the replication group. * @return Returns a reference to this object so that method calls can be chained together. */ public GlobalReplicationGroupMember withStatus(String status) { setStatus(status); 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 (getReplicationGroupId() != null) sb.append("ReplicationGroupId: ").append(getReplicationGroupId()).append(","); if (getReplicationGroupRegion() != null) sb.append("ReplicationGroupRegion: ").append(getReplicationGroupRegion()).append(","); if (getRole() != null) sb.append("Role: ").append(getRole()).append(","); if (getAutomaticFailover() != null) sb.append("AutomaticFailover: ").append(getAutomaticFailover()).append(","); if (getStatus() != null) sb.append("Status: ").append(getStatus()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof GlobalReplicationGroupMember == false) return false; GlobalReplicationGroupMember other = (GlobalReplicationGroupMember) obj; if (other.getReplicationGroupId() == null ^ this.getReplicationGroupId() == null) return false; if (other.getReplicationGroupId() != null && other.getReplicationGroupId().equals(this.getReplicationGroupId()) == false) return false; if (other.getReplicationGroupRegion() == null ^ this.getReplicationGroupRegion() == null) return false; if (other.getReplicationGroupRegion() != null && other.getReplicationGroupRegion().equals(this.getReplicationGroupRegion()) == false) return false; if (other.getRole() == null ^ this.getRole() == null) return false; if (other.getRole() != null && other.getRole().equals(this.getRole()) == false) return false; if (other.getAutomaticFailover() == null ^ this.getAutomaticFailover() == null) return false; if (other.getAutomaticFailover() != null && other.getAutomaticFailover().equals(this.getAutomaticFailover()) == false) return false; if (other.getStatus() == null ^ this.getStatus() == null) return false; if (other.getStatus() != null && other.getStatus().equals(this.getStatus()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getReplicationGroupId() == null) ? 0 : getReplicationGroupId().hashCode()); hashCode = prime * hashCode + ((getReplicationGroupRegion() == null) ? 0 : getReplicationGroupRegion().hashCode()); hashCode = prime * hashCode + ((getRole() == null) ? 0 : getRole().hashCode()); hashCode = prime * hashCode + ((getAutomaticFailover() == null) ? 0 : getAutomaticFailover().hashCode()); hashCode = prime * hashCode + ((getStatus() == null) ? 0 : getStatus().hashCode()); return hashCode; } @Override public GlobalReplicationGroupMember clone() { try { return (GlobalReplicationGroupMember) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy