com.amazonaws.services.elasticache.model.ModifyReplicationGroupRequest Maven / Gradle / Ivy
Show all versions of aws-java-sdk-elasticache Show documentation
/*
* Copyright 2012-2017 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;
import com.amazonaws.AmazonWebServiceRequest;
/**
*
* Represents the input of a ModifyReplicationGroups
operation.
*
*
* @see AWS
* API Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class ModifyReplicationGroupRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable {
/**
*
* The identifier of the replication group to modify.
*
*/
private String replicationGroupId;
/**
*
* A description for the replication group. Maximum length is 255 characters.
*
*/
private String replicationGroupDescription;
/**
*
* For replication groups with a single primary, if this parameter is specified, ElastiCache promotes the specified
* cluster in the specified replication group to the primary role. The nodes of all other clusters in the
* replication group are read replicas.
*
*/
private String primaryClusterId;
/**
*
* The cluster ID that is used as the daily snapshot source for the replication group. This parameter cannot be set
* for Redis (cluster mode enabled) replication groups.
*
*/
private String snapshottingClusterId;
/**
*
* Determines whether a read replica is automatically promoted to read/write primary if the existing primary
* encounters a failure.
*
*
* Valid values: true
| false
*
*
* Amazon ElastiCache for Redis does not support Multi-AZ with automatic failover on:
*
*
* -
*
* Redis versions earlier than 2.8.6.
*
*
* -
*
* Redis (cluster mode disabled): T1 and T2 cache node types.
*
*
* -
*
* Redis (cluster mode enabled): T1 node types.
*
*
*
*/
private Boolean automaticFailoverEnabled;
/**
*
* A list of cache security group names to authorize for the clusters in this replication group. This change is
* asynchronously applied as soon as possible.
*
*
* This parameter can be used only with replication group containing clusters running outside of an Amazon Virtual
* Private Cloud (Amazon VPC).
*
*
* Constraints: Must contain no more than 255 alphanumeric characters. Must not be Default
.
*
*/
private com.amazonaws.internal.SdkInternalList cacheSecurityGroupNames;
/**
*
* Specifies the VPC Security Groups associated with the clusters in the replication group.
*
*
* This parameter can be used only with replication group containing clusters running in an Amazon Virtual Private
* Cloud (Amazon VPC).
*
*/
private com.amazonaws.internal.SdkInternalList securityGroupIds;
/**
*
* Specifies the weekly time range during which maintenance on the cluster is performed. It is specified as a range
* in the format ddd:hh24:mi-ddd:hh24:mi (24H Clock UTC). The minimum maintenance window is a 60 minute period.
*
*
* Valid values for ddd
are:
*
*
* -
*
* sun
*
*
* -
*
* mon
*
*
* -
*
* tue
*
*
* -
*
* wed
*
*
* -
*
* thu
*
*
* -
*
* fri
*
*
* -
*
* sat
*
*
*
*
* Example: sun:23:00-mon:01:30
*
*/
private String preferredMaintenanceWindow;
/**
*
* The Amazon Resource Name (ARN) of the Amazon SNS topic to which notifications are sent.
*
*
*
* The Amazon SNS topic owner must be same as the replication group owner.
*
*
*/
private String notificationTopicArn;
/**
*
* The name of the cache parameter group to apply to all of the clusters in this replication group. This change is
* asynchronously applied as soon as possible for parameters when the ApplyImmediately
parameter is
* specified as true
for this request.
*
*/
private String cacheParameterGroupName;
/**
*
* The status of the Amazon SNS notification topic for the replication group. Notifications are sent only if the
* status is active
.
*
*
* Valid values: active
| inactive
*
*/
private String notificationTopicStatus;
/**
*
* If true
, this parameter causes the modifications in this request and any pending modifications to be
* applied, asynchronously and as soon as possible, regardless of the PreferredMaintenanceWindow
* setting for the replication group.
*
*
* If false
, changes to the nodes in the replication group are applied on the next maintenance reboot,
* or the next failure reboot, whichever occurs first.
*
*
* Valid values: true
| false
*
*
* Default: false
*
*/
private Boolean applyImmediately;
/**
*
* The upgraded version of the cache engine to be run on the clusters in the replication group.
*
*
* Important: You can upgrade to a newer engine version (see Selecting a Cache Engine and Version), but you cannot downgrade to an earlier engine version. If you want to
* use an earlier engine version, you must delete the existing replication group and create it anew with the earlier
* engine version.
*
*/
private String engineVersion;
/**
*
* This parameter is currently disabled.
*
*/
private Boolean autoMinorVersionUpgrade;
/**
*
* The number of days for which ElastiCache retains automatic node group (shard) snapshots before deleting them. For
* example, if you set SnapshotRetentionLimit
to 5, a snapshot that was taken today is retained for 5
* days before being deleted.
*
*
* Important If the value of SnapshotRetentionLimit is set to zero (0), backups are turned off.
*
*/
private Integer snapshotRetentionLimit;
/**
*
* The daily time range (in UTC) during which ElastiCache begins taking a daily snapshot of the node group (shard)
* specified by SnapshottingClusterId
.
*
*
* Example: 05:00-09:00
*
*
* If you do not specify this parameter, ElastiCache automatically chooses an appropriate time range.
*
*/
private String snapshotWindow;
/**
*
* A valid cache node type that you want to scale this replication group to.
*
*/
private String cacheNodeType;
/**
*
* The name of the Node Group (called shard in the console).
*
*/
private String nodeGroupId;
/**
*
* The identifier of the replication group to modify.
*
*
* @param replicationGroupId
* The identifier of the replication group to modify.
*/
public void setReplicationGroupId(String replicationGroupId) {
this.replicationGroupId = replicationGroupId;
}
/**
*
* The identifier of the replication group to modify.
*
*
* @return The identifier of the replication group to modify.
*/
public String getReplicationGroupId() {
return this.replicationGroupId;
}
/**
*
* The identifier of the replication group to modify.
*
*
* @param replicationGroupId
* The identifier of the replication group to modify.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ModifyReplicationGroupRequest withReplicationGroupId(String replicationGroupId) {
setReplicationGroupId(replicationGroupId);
return this;
}
/**
*
* A description for the replication group. Maximum length is 255 characters.
*
*
* @param replicationGroupDescription
* A description for the replication group. Maximum length is 255 characters.
*/
public void setReplicationGroupDescription(String replicationGroupDescription) {
this.replicationGroupDescription = replicationGroupDescription;
}
/**
*
* A description for the replication group. Maximum length is 255 characters.
*
*
* @return A description for the replication group. Maximum length is 255 characters.
*/
public String getReplicationGroupDescription() {
return this.replicationGroupDescription;
}
/**
*
* A description for the replication group. Maximum length is 255 characters.
*
*
* @param replicationGroupDescription
* A description for the replication group. Maximum length is 255 characters.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ModifyReplicationGroupRequest withReplicationGroupDescription(String replicationGroupDescription) {
setReplicationGroupDescription(replicationGroupDescription);
return this;
}
/**
*
* For replication groups with a single primary, if this parameter is specified, ElastiCache promotes the specified
* cluster in the specified replication group to the primary role. The nodes of all other clusters in the
* replication group are read replicas.
*
*
* @param primaryClusterId
* For replication groups with a single primary, if this parameter is specified, ElastiCache promotes the
* specified cluster in the specified replication group to the primary role. The nodes of all other clusters
* in the replication group are read replicas.
*/
public void setPrimaryClusterId(String primaryClusterId) {
this.primaryClusterId = primaryClusterId;
}
/**
*
* For replication groups with a single primary, if this parameter is specified, ElastiCache promotes the specified
* cluster in the specified replication group to the primary role. The nodes of all other clusters in the
* replication group are read replicas.
*
*
* @return For replication groups with a single primary, if this parameter is specified, ElastiCache promotes the
* specified cluster in the specified replication group to the primary role. The nodes of all other clusters
* in the replication group are read replicas.
*/
public String getPrimaryClusterId() {
return this.primaryClusterId;
}
/**
*
* For replication groups with a single primary, if this parameter is specified, ElastiCache promotes the specified
* cluster in the specified replication group to the primary role. The nodes of all other clusters in the
* replication group are read replicas.
*
*
* @param primaryClusterId
* For replication groups with a single primary, if this parameter is specified, ElastiCache promotes the
* specified cluster in the specified replication group to the primary role. The nodes of all other clusters
* in the replication group are read replicas.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ModifyReplicationGroupRequest withPrimaryClusterId(String primaryClusterId) {
setPrimaryClusterId(primaryClusterId);
return this;
}
/**
*
* The cluster ID that is used as the daily snapshot source for the replication group. This parameter cannot be set
* for Redis (cluster mode enabled) replication groups.
*
*
* @param snapshottingClusterId
* The cluster ID that is used as the daily snapshot source for the replication group. This parameter cannot
* be set for Redis (cluster mode enabled) replication groups.
*/
public void setSnapshottingClusterId(String snapshottingClusterId) {
this.snapshottingClusterId = snapshottingClusterId;
}
/**
*
* The cluster ID that is used as the daily snapshot source for the replication group. This parameter cannot be set
* for Redis (cluster mode enabled) replication groups.
*
*
* @return The cluster ID that is used as the daily snapshot source for the replication group. This parameter cannot
* be set for Redis (cluster mode enabled) replication groups.
*/
public String getSnapshottingClusterId() {
return this.snapshottingClusterId;
}
/**
*
* The cluster ID that is used as the daily snapshot source for the replication group. This parameter cannot be set
* for Redis (cluster mode enabled) replication groups.
*
*
* @param snapshottingClusterId
* The cluster ID that is used as the daily snapshot source for the replication group. This parameter cannot
* be set for Redis (cluster mode enabled) replication groups.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ModifyReplicationGroupRequest withSnapshottingClusterId(String snapshottingClusterId) {
setSnapshottingClusterId(snapshottingClusterId);
return this;
}
/**
*
* Determines whether a read replica is automatically promoted to read/write primary if the existing primary
* encounters a failure.
*
*
* Valid values: true
| false
*
*
* Amazon ElastiCache for Redis does not support Multi-AZ with automatic failover on:
*
*
* -
*
* Redis versions earlier than 2.8.6.
*
*
* -
*
* Redis (cluster mode disabled): T1 and T2 cache node types.
*
*
* -
*
* Redis (cluster mode enabled): T1 node types.
*
*
*
*
* @param automaticFailoverEnabled
* Determines whether a read replica is automatically promoted to read/write primary if the existing primary
* encounters a failure.
*
* Valid values: true
| false
*
*
* Amazon ElastiCache for Redis does not support Multi-AZ with automatic failover on:
*
*
* -
*
* Redis versions earlier than 2.8.6.
*
*
* -
*
* Redis (cluster mode disabled): T1 and T2 cache node types.
*
*
* -
*
* Redis (cluster mode enabled): T1 node types.
*
*
*/
public void setAutomaticFailoverEnabled(Boolean automaticFailoverEnabled) {
this.automaticFailoverEnabled = automaticFailoverEnabled;
}
/**
*
* Determines whether a read replica is automatically promoted to read/write primary if the existing primary
* encounters a failure.
*
*
* Valid values: true
| false
*
*
* Amazon ElastiCache for Redis does not support Multi-AZ with automatic failover on:
*
*
* -
*
* Redis versions earlier than 2.8.6.
*
*
* -
*
* Redis (cluster mode disabled): T1 and T2 cache node types.
*
*
* -
*
* Redis (cluster mode enabled): T1 node types.
*
*
*
*
* @return Determines whether a read replica is automatically promoted to read/write primary if the existing primary
* encounters a failure.
*
* Valid values: true
| false
*
*
* Amazon ElastiCache for Redis does not support Multi-AZ with automatic failover on:
*
*
* -
*
* Redis versions earlier than 2.8.6.
*
*
* -
*
* Redis (cluster mode disabled): T1 and T2 cache node types.
*
*
* -
*
* Redis (cluster mode enabled): T1 node types.
*
*
*/
public Boolean getAutomaticFailoverEnabled() {
return this.automaticFailoverEnabled;
}
/**
*
* Determines whether a read replica is automatically promoted to read/write primary if the existing primary
* encounters a failure.
*
*
* Valid values: true
| false
*
*
* Amazon ElastiCache for Redis does not support Multi-AZ with automatic failover on:
*
*
* -
*
* Redis versions earlier than 2.8.6.
*
*
* -
*
* Redis (cluster mode disabled): T1 and T2 cache node types.
*
*
* -
*
* Redis (cluster mode enabled): T1 node types.
*
*
*
*
* @param automaticFailoverEnabled
* Determines whether a read replica is automatically promoted to read/write primary if the existing primary
* encounters a failure.
*
* Valid values: true
| false
*
*
* Amazon ElastiCache for Redis does not support Multi-AZ with automatic failover on:
*
*
* -
*
* Redis versions earlier than 2.8.6.
*
*
* -
*
* Redis (cluster mode disabled): T1 and T2 cache node types.
*
*
* -
*
* Redis (cluster mode enabled): T1 node types.
*
*
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ModifyReplicationGroupRequest withAutomaticFailoverEnabled(Boolean automaticFailoverEnabled) {
setAutomaticFailoverEnabled(automaticFailoverEnabled);
return this;
}
/**
*
* Determines whether a read replica is automatically promoted to read/write primary if the existing primary
* encounters a failure.
*
*
* Valid values: true
| false
*
*
* Amazon ElastiCache for Redis does not support Multi-AZ with automatic failover on:
*
*
* -
*
* Redis versions earlier than 2.8.6.
*
*
* -
*
* Redis (cluster mode disabled): T1 and T2 cache node types.
*
*
* -
*
* Redis (cluster mode enabled): T1 node types.
*
*
*
*
* @return Determines whether a read replica is automatically promoted to read/write primary if the existing primary
* encounters a failure.
*
* Valid values: true
| false
*
*
* Amazon ElastiCache for Redis does not support Multi-AZ with automatic failover on:
*
*
* -
*
* Redis versions earlier than 2.8.6.
*
*
* -
*
* Redis (cluster mode disabled): T1 and T2 cache node types.
*
*
* -
*
* Redis (cluster mode enabled): T1 node types.
*
*
*/
public Boolean isAutomaticFailoverEnabled() {
return this.automaticFailoverEnabled;
}
/**
*
* A list of cache security group names to authorize for the clusters in this replication group. This change is
* asynchronously applied as soon as possible.
*
*
* This parameter can be used only with replication group containing clusters running outside of an Amazon Virtual
* Private Cloud (Amazon VPC).
*
*
* Constraints: Must contain no more than 255 alphanumeric characters. Must not be Default
.
*
*
* @return A list of cache security group names to authorize for the clusters in this replication group. This change
* is asynchronously applied as soon as possible.
*
* This parameter can be used only with replication group containing clusters running outside of an Amazon
* Virtual Private Cloud (Amazon VPC).
*
*
* Constraints: Must contain no more than 255 alphanumeric characters. Must not be Default
.
*/
public java.util.List getCacheSecurityGroupNames() {
if (cacheSecurityGroupNames == null) {
cacheSecurityGroupNames = new com.amazonaws.internal.SdkInternalList();
}
return cacheSecurityGroupNames;
}
/**
*
* A list of cache security group names to authorize for the clusters in this replication group. This change is
* asynchronously applied as soon as possible.
*
*
* This parameter can be used only with replication group containing clusters running outside of an Amazon Virtual
* Private Cloud (Amazon VPC).
*
*
* Constraints: Must contain no more than 255 alphanumeric characters. Must not be Default
.
*
*
* @param cacheSecurityGroupNames
* A list of cache security group names to authorize for the clusters in this replication group. This change
* is asynchronously applied as soon as possible.
*
* This parameter can be used only with replication group containing clusters running outside of an Amazon
* Virtual Private Cloud (Amazon VPC).
*
*
* Constraints: Must contain no more than 255 alphanumeric characters. Must not be Default
.
*/
public void setCacheSecurityGroupNames(java.util.Collection cacheSecurityGroupNames) {
if (cacheSecurityGroupNames == null) {
this.cacheSecurityGroupNames = null;
return;
}
this.cacheSecurityGroupNames = new com.amazonaws.internal.SdkInternalList(cacheSecurityGroupNames);
}
/**
*
* A list of cache security group names to authorize for the clusters in this replication group. This change is
* asynchronously applied as soon as possible.
*
*
* This parameter can be used only with replication group containing clusters running outside of an Amazon Virtual
* Private Cloud (Amazon VPC).
*
*
* Constraints: Must contain no more than 255 alphanumeric characters. Must not be Default
.
*
*
* NOTE: This method appends the values to the existing list (if any). Use
* {@link #setCacheSecurityGroupNames(java.util.Collection)} or
* {@link #withCacheSecurityGroupNames(java.util.Collection)} if you want to override the existing values.
*
*
* @param cacheSecurityGroupNames
* A list of cache security group names to authorize for the clusters in this replication group. This change
* is asynchronously applied as soon as possible.
*
* This parameter can be used only with replication group containing clusters running outside of an Amazon
* Virtual Private Cloud (Amazon VPC).
*
*
* Constraints: Must contain no more than 255 alphanumeric characters. Must not be Default
.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ModifyReplicationGroupRequest withCacheSecurityGroupNames(String... cacheSecurityGroupNames) {
if (this.cacheSecurityGroupNames == null) {
setCacheSecurityGroupNames(new com.amazonaws.internal.SdkInternalList(cacheSecurityGroupNames.length));
}
for (String ele : cacheSecurityGroupNames) {
this.cacheSecurityGroupNames.add(ele);
}
return this;
}
/**
*
* A list of cache security group names to authorize for the clusters in this replication group. This change is
* asynchronously applied as soon as possible.
*
*
* This parameter can be used only with replication group containing clusters running outside of an Amazon Virtual
* Private Cloud (Amazon VPC).
*
*
* Constraints: Must contain no more than 255 alphanumeric characters. Must not be Default
.
*
*
* @param cacheSecurityGroupNames
* A list of cache security group names to authorize for the clusters in this replication group. This change
* is asynchronously applied as soon as possible.
*
* This parameter can be used only with replication group containing clusters running outside of an Amazon
* Virtual Private Cloud (Amazon VPC).
*
*
* Constraints: Must contain no more than 255 alphanumeric characters. Must not be Default
.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ModifyReplicationGroupRequest withCacheSecurityGroupNames(java.util.Collection cacheSecurityGroupNames) {
setCacheSecurityGroupNames(cacheSecurityGroupNames);
return this;
}
/**
*
* Specifies the VPC Security Groups associated with the clusters in the replication group.
*
*
* This parameter can be used only with replication group containing clusters running in an Amazon Virtual Private
* Cloud (Amazon VPC).
*
*
* @return Specifies the VPC Security Groups associated with the clusters in the replication group.
*
* This parameter can be used only with replication group containing clusters running in an Amazon Virtual
* Private Cloud (Amazon VPC).
*/
public java.util.List getSecurityGroupIds() {
if (securityGroupIds == null) {
securityGroupIds = new com.amazonaws.internal.SdkInternalList();
}
return securityGroupIds;
}
/**
*
* Specifies the VPC Security Groups associated with the clusters in the replication group.
*
*
* This parameter can be used only with replication group containing clusters running in an Amazon Virtual Private
* Cloud (Amazon VPC).
*
*
* @param securityGroupIds
* Specifies the VPC Security Groups associated with the clusters in the replication group.
*
* This parameter can be used only with replication group containing clusters running in an Amazon Virtual
* Private Cloud (Amazon VPC).
*/
public void setSecurityGroupIds(java.util.Collection securityGroupIds) {
if (securityGroupIds == null) {
this.securityGroupIds = null;
return;
}
this.securityGroupIds = new com.amazonaws.internal.SdkInternalList(securityGroupIds);
}
/**
*
* Specifies the VPC Security Groups associated with the clusters in the replication group.
*
*
* This parameter can be used only with replication group containing clusters running in an Amazon Virtual Private
* Cloud (Amazon VPC).
*
*
* NOTE: This method appends the values to the existing list (if any). Use
* {@link #setSecurityGroupIds(java.util.Collection)} or {@link #withSecurityGroupIds(java.util.Collection)} if you
* want to override the existing values.
*
*
* @param securityGroupIds
* Specifies the VPC Security Groups associated with the clusters in the replication group.
*
* This parameter can be used only with replication group containing clusters running in an Amazon Virtual
* Private Cloud (Amazon VPC).
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ModifyReplicationGroupRequest withSecurityGroupIds(String... securityGroupIds) {
if (this.securityGroupIds == null) {
setSecurityGroupIds(new com.amazonaws.internal.SdkInternalList(securityGroupIds.length));
}
for (String ele : securityGroupIds) {
this.securityGroupIds.add(ele);
}
return this;
}
/**
*
* Specifies the VPC Security Groups associated with the clusters in the replication group.
*
*
* This parameter can be used only with replication group containing clusters running in an Amazon Virtual Private
* Cloud (Amazon VPC).
*
*
* @param securityGroupIds
* Specifies the VPC Security Groups associated with the clusters in the replication group.
*
* This parameter can be used only with replication group containing clusters running in an Amazon Virtual
* Private Cloud (Amazon VPC).
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ModifyReplicationGroupRequest withSecurityGroupIds(java.util.Collection securityGroupIds) {
setSecurityGroupIds(securityGroupIds);
return this;
}
/**
*
* Specifies the weekly time range during which maintenance on the cluster is performed. It is specified as a range
* in the format ddd:hh24:mi-ddd:hh24:mi (24H Clock UTC). The minimum maintenance window is a 60 minute period.
*
*
* Valid values for ddd
are:
*
*
* -
*
* sun
*
*
* -
*
* mon
*
*
* -
*
* tue
*
*
* -
*
* wed
*
*
* -
*
* thu
*
*
* -
*
* fri
*
*
* -
*
* sat
*
*
*
*
* Example: sun:23:00-mon:01:30
*
*
* @param preferredMaintenanceWindow
* Specifies the weekly time range during which maintenance on the cluster is performed. It is specified as a
* range in the format ddd:hh24:mi-ddd:hh24:mi (24H Clock UTC). The minimum maintenance window is a 60 minute
* period.
*
* Valid values for ddd
are:
*
*
* -
*
* sun
*
*
* -
*
* mon
*
*
* -
*
* tue
*
*
* -
*
* wed
*
*
* -
*
* thu
*
*
* -
*
* fri
*
*
* -
*
* sat
*
*
*
*
* Example: sun:23:00-mon:01:30
*/
public void setPreferredMaintenanceWindow(String preferredMaintenanceWindow) {
this.preferredMaintenanceWindow = preferredMaintenanceWindow;
}
/**
*
* Specifies the weekly time range during which maintenance on the cluster is performed. It is specified as a range
* in the format ddd:hh24:mi-ddd:hh24:mi (24H Clock UTC). The minimum maintenance window is a 60 minute period.
*
*
* Valid values for ddd
are:
*
*
* -
*
* sun
*
*
* -
*
* mon
*
*
* -
*
* tue
*
*
* -
*
* wed
*
*
* -
*
* thu
*
*
* -
*
* fri
*
*
* -
*
* sat
*
*
*
*
* Example: sun:23:00-mon:01:30
*
*
* @return Specifies the weekly time range during which maintenance on the cluster is performed. It is specified as
* a range in the format ddd:hh24:mi-ddd:hh24:mi (24H Clock UTC). The minimum maintenance window is a 60
* minute period.
*
* Valid values for ddd
are:
*
*
* -
*
* sun
*
*
* -
*
* mon
*
*
* -
*
* tue
*
*
* -
*
* wed
*
*
* -
*
* thu
*
*
* -
*
* fri
*
*
* -
*
* sat
*
*
*
*
* Example: sun:23:00-mon:01:30
*/
public String getPreferredMaintenanceWindow() {
return this.preferredMaintenanceWindow;
}
/**
*
* Specifies the weekly time range during which maintenance on the cluster is performed. It is specified as a range
* in the format ddd:hh24:mi-ddd:hh24:mi (24H Clock UTC). The minimum maintenance window is a 60 minute period.
*
*
* Valid values for ddd
are:
*
*
* -
*
* sun
*
*
* -
*
* mon
*
*
* -
*
* tue
*
*
* -
*
* wed
*
*
* -
*
* thu
*
*
* -
*
* fri
*
*
* -
*
* sat
*
*
*
*
* Example: sun:23:00-mon:01:30
*
*
* @param preferredMaintenanceWindow
* Specifies the weekly time range during which maintenance on the cluster is performed. It is specified as a
* range in the format ddd:hh24:mi-ddd:hh24:mi (24H Clock UTC). The minimum maintenance window is a 60 minute
* period.
*
* Valid values for ddd
are:
*
*
* -
*
* sun
*
*
* -
*
* mon
*
*
* -
*
* tue
*
*
* -
*
* wed
*
*
* -
*
* thu
*
*
* -
*
* fri
*
*
* -
*
* sat
*
*
*
*
* Example: sun:23:00-mon:01:30
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ModifyReplicationGroupRequest withPreferredMaintenanceWindow(String preferredMaintenanceWindow) {
setPreferredMaintenanceWindow(preferredMaintenanceWindow);
return this;
}
/**
*
* The Amazon Resource Name (ARN) of the Amazon SNS topic to which notifications are sent.
*
*
*
* The Amazon SNS topic owner must be same as the replication group owner.
*
*
*
* @param notificationTopicArn
* The Amazon Resource Name (ARN) of the Amazon SNS topic to which notifications are sent.
*
* The Amazon SNS topic owner must be same as the replication group owner.
*
*/
public void setNotificationTopicArn(String notificationTopicArn) {
this.notificationTopicArn = notificationTopicArn;
}
/**
*
* The Amazon Resource Name (ARN) of the Amazon SNS topic to which notifications are sent.
*
*
*
* The Amazon SNS topic owner must be same as the replication group owner.
*
*
*
* @return The Amazon Resource Name (ARN) of the Amazon SNS topic to which notifications are sent.
*
* The Amazon SNS topic owner must be same as the replication group owner.
*
*/
public String getNotificationTopicArn() {
return this.notificationTopicArn;
}
/**
*
* The Amazon Resource Name (ARN) of the Amazon SNS topic to which notifications are sent.
*
*
*
* The Amazon SNS topic owner must be same as the replication group owner.
*
*
*
* @param notificationTopicArn
* The Amazon Resource Name (ARN) of the Amazon SNS topic to which notifications are sent.
*
* The Amazon SNS topic owner must be same as the replication group owner.
*
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ModifyReplicationGroupRequest withNotificationTopicArn(String notificationTopicArn) {
setNotificationTopicArn(notificationTopicArn);
return this;
}
/**
*
* The name of the cache parameter group to apply to all of the clusters in this replication group. This change is
* asynchronously applied as soon as possible for parameters when the ApplyImmediately
parameter is
* specified as true
for this request.
*
*
* @param cacheParameterGroupName
* The name of the cache parameter group to apply to all of the clusters in this replication group. This
* change is asynchronously applied as soon as possible for parameters when the ApplyImmediately
* parameter is specified as true
for this request.
*/
public void setCacheParameterGroupName(String cacheParameterGroupName) {
this.cacheParameterGroupName = cacheParameterGroupName;
}
/**
*
* The name of the cache parameter group to apply to all of the clusters in this replication group. This change is
* asynchronously applied as soon as possible for parameters when the ApplyImmediately
parameter is
* specified as true
for this request.
*
*
* @return The name of the cache parameter group to apply to all of the clusters in this replication group. This
* change is asynchronously applied as soon as possible for parameters when the
* ApplyImmediately
parameter is specified as true
for this request.
*/
public String getCacheParameterGroupName() {
return this.cacheParameterGroupName;
}
/**
*
* The name of the cache parameter group to apply to all of the clusters in this replication group. This change is
* asynchronously applied as soon as possible for parameters when the ApplyImmediately
parameter is
* specified as true
for this request.
*
*
* @param cacheParameterGroupName
* The name of the cache parameter group to apply to all of the clusters in this replication group. This
* change is asynchronously applied as soon as possible for parameters when the ApplyImmediately
* parameter is specified as true
for this request.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ModifyReplicationGroupRequest withCacheParameterGroupName(String cacheParameterGroupName) {
setCacheParameterGroupName(cacheParameterGroupName);
return this;
}
/**
*
* The status of the Amazon SNS notification topic for the replication group. Notifications are sent only if the
* status is active
.
*
*
* Valid values: active
| inactive
*
*
* @param notificationTopicStatus
* The status of the Amazon SNS notification topic for the replication group. Notifications are sent only if
* the status is active
.
*
* Valid values: active
| inactive
*/
public void setNotificationTopicStatus(String notificationTopicStatus) {
this.notificationTopicStatus = notificationTopicStatus;
}
/**
*
* The status of the Amazon SNS notification topic for the replication group. Notifications are sent only if the
* status is active
.
*
*
* Valid values: active
| inactive
*
*
* @return The status of the Amazon SNS notification topic for the replication group. Notifications are sent only if
* the status is active
.
*
* Valid values: active
| inactive
*/
public String getNotificationTopicStatus() {
return this.notificationTopicStatus;
}
/**
*
* The status of the Amazon SNS notification topic for the replication group. Notifications are sent only if the
* status is active
.
*
*
* Valid values: active
| inactive
*
*
* @param notificationTopicStatus
* The status of the Amazon SNS notification topic for the replication group. Notifications are sent only if
* the status is active
.
*
* Valid values: active
| inactive
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ModifyReplicationGroupRequest withNotificationTopicStatus(String notificationTopicStatus) {
setNotificationTopicStatus(notificationTopicStatus);
return this;
}
/**
*
* If true
, this parameter causes the modifications in this request and any pending modifications to be
* applied, asynchronously and as soon as possible, regardless of the PreferredMaintenanceWindow
* setting for the replication group.
*
*
* If false
, changes to the nodes in the replication group are applied on the next maintenance reboot,
* or the next failure reboot, whichever occurs first.
*
*
* Valid values: true
| false
*
*
* Default: false
*
*
* @param applyImmediately
* If true
, this parameter causes the modifications in this request and any pending
* modifications to be applied, asynchronously and as soon as possible, regardless of the
* PreferredMaintenanceWindow
setting for the replication group.
*
* If false
, changes to the nodes in the replication group are applied on the next maintenance
* reboot, or the next failure reboot, whichever occurs first.
*
*
* Valid values: true
| false
*
*
* Default: false
*/
public void setApplyImmediately(Boolean applyImmediately) {
this.applyImmediately = applyImmediately;
}
/**
*
* If true
, this parameter causes the modifications in this request and any pending modifications to be
* applied, asynchronously and as soon as possible, regardless of the PreferredMaintenanceWindow
* setting for the replication group.
*
*
* If false
, changes to the nodes in the replication group are applied on the next maintenance reboot,
* or the next failure reboot, whichever occurs first.
*
*
* Valid values: true
| false
*
*
* Default: false
*
*
* @return If true
, this parameter causes the modifications in this request and any pending
* modifications to be applied, asynchronously and as soon as possible, regardless of the
* PreferredMaintenanceWindow
setting for the replication group.
*
* If false
, changes to the nodes in the replication group are applied on the next maintenance
* reboot, or the next failure reboot, whichever occurs first.
*
*
* Valid values: true
| false
*
*
* Default: false
*/
public Boolean getApplyImmediately() {
return this.applyImmediately;
}
/**
*
* If true
, this parameter causes the modifications in this request and any pending modifications to be
* applied, asynchronously and as soon as possible, regardless of the PreferredMaintenanceWindow
* setting for the replication group.
*
*
* If false
, changes to the nodes in the replication group are applied on the next maintenance reboot,
* or the next failure reboot, whichever occurs first.
*
*
* Valid values: true
| false
*
*
* Default: false
*
*
* @param applyImmediately
* If true
, this parameter causes the modifications in this request and any pending
* modifications to be applied, asynchronously and as soon as possible, regardless of the
* PreferredMaintenanceWindow
setting for the replication group.
*
* If false
, changes to the nodes in the replication group are applied on the next maintenance
* reboot, or the next failure reboot, whichever occurs first.
*
*
* Valid values: true
| false
*
*
* Default: false
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ModifyReplicationGroupRequest withApplyImmediately(Boolean applyImmediately) {
setApplyImmediately(applyImmediately);
return this;
}
/**
*
* If true
, this parameter causes the modifications in this request and any pending modifications to be
* applied, asynchronously and as soon as possible, regardless of the PreferredMaintenanceWindow
* setting for the replication group.
*
*
* If false
, changes to the nodes in the replication group are applied on the next maintenance reboot,
* or the next failure reboot, whichever occurs first.
*
*
* Valid values: true
| false
*
*
* Default: false
*
*
* @return If true
, this parameter causes the modifications in this request and any pending
* modifications to be applied, asynchronously and as soon as possible, regardless of the
* PreferredMaintenanceWindow
setting for the replication group.
*
* If false
, changes to the nodes in the replication group are applied on the next maintenance
* reboot, or the next failure reboot, whichever occurs first.
*
*
* Valid values: true
| false
*
*
* Default: false
*/
public Boolean isApplyImmediately() {
return this.applyImmediately;
}
/**
*
* The upgraded version of the cache engine to be run on the clusters in the replication group.
*
*
* Important: You can upgrade to a newer engine version (see Selecting a Cache Engine and Version), but you cannot downgrade to an earlier engine version. If you want to
* use an earlier engine version, you must delete the existing replication group and create it anew with the earlier
* engine version.
*
*
* @param engineVersion
* The upgraded version of the cache engine to be run on the clusters in the replication group.
*
* Important: You can upgrade to a newer engine version (see Selecting a Cache Engine and Version), but you cannot downgrade to an earlier engine version. If you
* want to use an earlier engine version, you must delete the existing replication group and create it anew
* with the earlier engine version.
*/
public void setEngineVersion(String engineVersion) {
this.engineVersion = engineVersion;
}
/**
*
* The upgraded version of the cache engine to be run on the clusters in the replication group.
*
*
* Important: You can upgrade to a newer engine version (see Selecting a Cache Engine and Version), but you cannot downgrade to an earlier engine version. If you want to
* use an earlier engine version, you must delete the existing replication group and create it anew with the earlier
* engine version.
*
*
* @return The upgraded version of the cache engine to be run on the clusters in the replication group.
*
* Important: You can upgrade to a newer engine version (see Selecting a Cache Engine and Version), but you cannot downgrade to an earlier engine version. If you
* want to use an earlier engine version, you must delete the existing replication group and create it anew
* with the earlier engine version.
*/
public String getEngineVersion() {
return this.engineVersion;
}
/**
*
* The upgraded version of the cache engine to be run on the clusters in the replication group.
*
*
* Important: You can upgrade to a newer engine version (see Selecting a Cache Engine and Version), but you cannot downgrade to an earlier engine version. If you want to
* use an earlier engine version, you must delete the existing replication group and create it anew with the earlier
* engine version.
*
*
* @param engineVersion
* The upgraded version of the cache engine to be run on the clusters in the replication group.
*
* Important: You can upgrade to a newer engine version (see Selecting a Cache Engine and Version), but you cannot downgrade to an earlier engine version. If you
* want to use an earlier engine version, you must delete the existing replication group and create it anew
* with the earlier engine version.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ModifyReplicationGroupRequest withEngineVersion(String engineVersion) {
setEngineVersion(engineVersion);
return this;
}
/**
*
* This parameter is currently disabled.
*
*
* @param autoMinorVersionUpgrade
* This parameter is currently disabled.
*/
public void setAutoMinorVersionUpgrade(Boolean autoMinorVersionUpgrade) {
this.autoMinorVersionUpgrade = autoMinorVersionUpgrade;
}
/**
*
* This parameter is currently disabled.
*
*
* @return This parameter is currently disabled.
*/
public Boolean getAutoMinorVersionUpgrade() {
return this.autoMinorVersionUpgrade;
}
/**
*
* This parameter is currently disabled.
*
*
* @param autoMinorVersionUpgrade
* This parameter is currently disabled.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ModifyReplicationGroupRequest withAutoMinorVersionUpgrade(Boolean autoMinorVersionUpgrade) {
setAutoMinorVersionUpgrade(autoMinorVersionUpgrade);
return this;
}
/**
*
* This parameter is currently disabled.
*
*
* @return This parameter is currently disabled.
*/
public Boolean isAutoMinorVersionUpgrade() {
return this.autoMinorVersionUpgrade;
}
/**
*
* The number of days for which ElastiCache retains automatic node group (shard) snapshots before deleting them. For
* example, if you set SnapshotRetentionLimit
to 5, a snapshot that was taken today is retained for 5
* days before being deleted.
*
*
* Important If the value of SnapshotRetentionLimit is set to zero (0), backups are turned off.
*
*
* @param snapshotRetentionLimit
* The number of days for which ElastiCache retains automatic node group (shard) snapshots before deleting
* them. For example, if you set SnapshotRetentionLimit
to 5, a snapshot that was taken today is
* retained for 5 days before being deleted.
*
* Important If the value of SnapshotRetentionLimit is set to zero (0), backups are turned off.
*/
public void setSnapshotRetentionLimit(Integer snapshotRetentionLimit) {
this.snapshotRetentionLimit = snapshotRetentionLimit;
}
/**
*
* The number of days for which ElastiCache retains automatic node group (shard) snapshots before deleting them. For
* example, if you set SnapshotRetentionLimit
to 5, a snapshot that was taken today is retained for 5
* days before being deleted.
*
*
* Important If the value of SnapshotRetentionLimit is set to zero (0), backups are turned off.
*
*
* @return The number of days for which ElastiCache retains automatic node group (shard) snapshots before deleting
* them. For example, if you set SnapshotRetentionLimit
to 5, a snapshot that was taken today
* is retained for 5 days before being deleted.
*
* Important If the value of SnapshotRetentionLimit is set to zero (0), backups are turned off.
*/
public Integer getSnapshotRetentionLimit() {
return this.snapshotRetentionLimit;
}
/**
*
* The number of days for which ElastiCache retains automatic node group (shard) snapshots before deleting them. For
* example, if you set SnapshotRetentionLimit
to 5, a snapshot that was taken today is retained for 5
* days before being deleted.
*
*
* Important If the value of SnapshotRetentionLimit is set to zero (0), backups are turned off.
*
*
* @param snapshotRetentionLimit
* The number of days for which ElastiCache retains automatic node group (shard) snapshots before deleting
* them. For example, if you set SnapshotRetentionLimit
to 5, a snapshot that was taken today is
* retained for 5 days before being deleted.
*
* Important If the value of SnapshotRetentionLimit is set to zero (0), backups are turned off.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ModifyReplicationGroupRequest withSnapshotRetentionLimit(Integer snapshotRetentionLimit) {
setSnapshotRetentionLimit(snapshotRetentionLimit);
return this;
}
/**
*
* The daily time range (in UTC) during which ElastiCache begins taking a daily snapshot of the node group (shard)
* specified by SnapshottingClusterId
.
*
*
* Example: 05:00-09:00
*
*
* If you do not specify this parameter, ElastiCache automatically chooses an appropriate time range.
*
*
* @param snapshotWindow
* The daily time range (in UTC) during which ElastiCache begins taking a daily snapshot of the node group
* (shard) specified by SnapshottingClusterId
.
*
* Example: 05:00-09:00
*
*
* If you do not specify this parameter, ElastiCache automatically chooses an appropriate time range.
*/
public void setSnapshotWindow(String snapshotWindow) {
this.snapshotWindow = snapshotWindow;
}
/**
*
* The daily time range (in UTC) during which ElastiCache begins taking a daily snapshot of the node group (shard)
* specified by SnapshottingClusterId
.
*
*
* Example: 05:00-09:00
*
*
* If you do not specify this parameter, ElastiCache automatically chooses an appropriate time range.
*
*
* @return The daily time range (in UTC) during which ElastiCache begins taking a daily snapshot of the node group
* (shard) specified by SnapshottingClusterId
.
*
* Example: 05:00-09:00
*
*
* If you do not specify this parameter, ElastiCache automatically chooses an appropriate time range.
*/
public String getSnapshotWindow() {
return this.snapshotWindow;
}
/**
*
* The daily time range (in UTC) during which ElastiCache begins taking a daily snapshot of the node group (shard)
* specified by SnapshottingClusterId
.
*
*
* Example: 05:00-09:00
*
*
* If you do not specify this parameter, ElastiCache automatically chooses an appropriate time range.
*
*
* @param snapshotWindow
* The daily time range (in UTC) during which ElastiCache begins taking a daily snapshot of the node group
* (shard) specified by SnapshottingClusterId
.
*
* Example: 05:00-09:00
*
*
* If you do not specify this parameter, ElastiCache automatically chooses an appropriate time range.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ModifyReplicationGroupRequest withSnapshotWindow(String snapshotWindow) {
setSnapshotWindow(snapshotWindow);
return this;
}
/**
*
* A valid cache node type that you want to scale this replication group to.
*
*
* @param cacheNodeType
* A valid cache node type that you want to scale this replication group to.
*/
public void setCacheNodeType(String cacheNodeType) {
this.cacheNodeType = cacheNodeType;
}
/**
*
* A valid cache node type that you want to scale this replication group to.
*
*
* @return A valid cache node type that you want to scale this replication group to.
*/
public String getCacheNodeType() {
return this.cacheNodeType;
}
/**
*
* A valid cache node type that you want to scale this replication group to.
*
*
* @param cacheNodeType
* A valid cache node type that you want to scale this replication group to.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ModifyReplicationGroupRequest withCacheNodeType(String cacheNodeType) {
setCacheNodeType(cacheNodeType);
return this;
}
/**
*
* The name of the Node Group (called shard in the console).
*
*
* @param nodeGroupId
* The name of the Node Group (called shard in the console).
*/
public void setNodeGroupId(String nodeGroupId) {
this.nodeGroupId = nodeGroupId;
}
/**
*
* The name of the Node Group (called shard in the console).
*
*
* @return The name of the Node Group (called shard in the console).
*/
public String getNodeGroupId() {
return this.nodeGroupId;
}
/**
*
* The name of the Node Group (called shard in the console).
*
*
* @param nodeGroupId
* The name of the Node Group (called shard in the console).
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ModifyReplicationGroupRequest withNodeGroupId(String nodeGroupId) {
setNodeGroupId(nodeGroupId);
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 (getReplicationGroupId() != null)
sb.append("ReplicationGroupId: ").append(getReplicationGroupId()).append(",");
if (getReplicationGroupDescription() != null)
sb.append("ReplicationGroupDescription: ").append(getReplicationGroupDescription()).append(",");
if (getPrimaryClusterId() != null)
sb.append("PrimaryClusterId: ").append(getPrimaryClusterId()).append(",");
if (getSnapshottingClusterId() != null)
sb.append("SnapshottingClusterId: ").append(getSnapshottingClusterId()).append(",");
if (getAutomaticFailoverEnabled() != null)
sb.append("AutomaticFailoverEnabled: ").append(getAutomaticFailoverEnabled()).append(",");
if (getCacheSecurityGroupNames() != null)
sb.append("CacheSecurityGroupNames: ").append(getCacheSecurityGroupNames()).append(",");
if (getSecurityGroupIds() != null)
sb.append("SecurityGroupIds: ").append(getSecurityGroupIds()).append(",");
if (getPreferredMaintenanceWindow() != null)
sb.append("PreferredMaintenanceWindow: ").append(getPreferredMaintenanceWindow()).append(",");
if (getNotificationTopicArn() != null)
sb.append("NotificationTopicArn: ").append(getNotificationTopicArn()).append(",");
if (getCacheParameterGroupName() != null)
sb.append("CacheParameterGroupName: ").append(getCacheParameterGroupName()).append(",");
if (getNotificationTopicStatus() != null)
sb.append("NotificationTopicStatus: ").append(getNotificationTopicStatus()).append(",");
if (getApplyImmediately() != null)
sb.append("ApplyImmediately: ").append(getApplyImmediately()).append(",");
if (getEngineVersion() != null)
sb.append("EngineVersion: ").append(getEngineVersion()).append(",");
if (getAutoMinorVersionUpgrade() != null)
sb.append("AutoMinorVersionUpgrade: ").append(getAutoMinorVersionUpgrade()).append(",");
if (getSnapshotRetentionLimit() != null)
sb.append("SnapshotRetentionLimit: ").append(getSnapshotRetentionLimit()).append(",");
if (getSnapshotWindow() != null)
sb.append("SnapshotWindow: ").append(getSnapshotWindow()).append(",");
if (getCacheNodeType() != null)
sb.append("CacheNodeType: ").append(getCacheNodeType()).append(",");
if (getNodeGroupId() != null)
sb.append("NodeGroupId: ").append(getNodeGroupId());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof ModifyReplicationGroupRequest == false)
return false;
ModifyReplicationGroupRequest other = (ModifyReplicationGroupRequest) obj;
if (other.getReplicationGroupId() == null ^ this.getReplicationGroupId() == null)
return false;
if (other.getReplicationGroupId() != null && other.getReplicationGroupId().equals(this.getReplicationGroupId()) == false)
return false;
if (other.getReplicationGroupDescription() == null ^ this.getReplicationGroupDescription() == null)
return false;
if (other.getReplicationGroupDescription() != null && other.getReplicationGroupDescription().equals(this.getReplicationGroupDescription()) == false)
return false;
if (other.getPrimaryClusterId() == null ^ this.getPrimaryClusterId() == null)
return false;
if (other.getPrimaryClusterId() != null && other.getPrimaryClusterId().equals(this.getPrimaryClusterId()) == false)
return false;
if (other.getSnapshottingClusterId() == null ^ this.getSnapshottingClusterId() == null)
return false;
if (other.getSnapshottingClusterId() != null && other.getSnapshottingClusterId().equals(this.getSnapshottingClusterId()) == false)
return false;
if (other.getAutomaticFailoverEnabled() == null ^ this.getAutomaticFailoverEnabled() == null)
return false;
if (other.getAutomaticFailoverEnabled() != null && other.getAutomaticFailoverEnabled().equals(this.getAutomaticFailoverEnabled()) == false)
return false;
if (other.getCacheSecurityGroupNames() == null ^ this.getCacheSecurityGroupNames() == null)
return false;
if (other.getCacheSecurityGroupNames() != null && other.getCacheSecurityGroupNames().equals(this.getCacheSecurityGroupNames()) == false)
return false;
if (other.getSecurityGroupIds() == null ^ this.getSecurityGroupIds() == null)
return false;
if (other.getSecurityGroupIds() != null && other.getSecurityGroupIds().equals(this.getSecurityGroupIds()) == false)
return false;
if (other.getPreferredMaintenanceWindow() == null ^ this.getPreferredMaintenanceWindow() == null)
return false;
if (other.getPreferredMaintenanceWindow() != null && other.getPreferredMaintenanceWindow().equals(this.getPreferredMaintenanceWindow()) == false)
return false;
if (other.getNotificationTopicArn() == null ^ this.getNotificationTopicArn() == null)
return false;
if (other.getNotificationTopicArn() != null && other.getNotificationTopicArn().equals(this.getNotificationTopicArn()) == false)
return false;
if (other.getCacheParameterGroupName() == null ^ this.getCacheParameterGroupName() == null)
return false;
if (other.getCacheParameterGroupName() != null && other.getCacheParameterGroupName().equals(this.getCacheParameterGroupName()) == false)
return false;
if (other.getNotificationTopicStatus() == null ^ this.getNotificationTopicStatus() == null)
return false;
if (other.getNotificationTopicStatus() != null && other.getNotificationTopicStatus().equals(this.getNotificationTopicStatus()) == false)
return false;
if (other.getApplyImmediately() == null ^ this.getApplyImmediately() == null)
return false;
if (other.getApplyImmediately() != null && other.getApplyImmediately().equals(this.getApplyImmediately()) == false)
return false;
if (other.getEngineVersion() == null ^ this.getEngineVersion() == null)
return false;
if (other.getEngineVersion() != null && other.getEngineVersion().equals(this.getEngineVersion()) == false)
return false;
if (other.getAutoMinorVersionUpgrade() == null ^ this.getAutoMinorVersionUpgrade() == null)
return false;
if (other.getAutoMinorVersionUpgrade() != null && other.getAutoMinorVersionUpgrade().equals(this.getAutoMinorVersionUpgrade()) == false)
return false;
if (other.getSnapshotRetentionLimit() == null ^ this.getSnapshotRetentionLimit() == null)
return false;
if (other.getSnapshotRetentionLimit() != null && other.getSnapshotRetentionLimit().equals(this.getSnapshotRetentionLimit()) == false)
return false;
if (other.getSnapshotWindow() == null ^ this.getSnapshotWindow() == null)
return false;
if (other.getSnapshotWindow() != null && other.getSnapshotWindow().equals(this.getSnapshotWindow()) == false)
return false;
if (other.getCacheNodeType() == null ^ this.getCacheNodeType() == null)
return false;
if (other.getCacheNodeType() != null && other.getCacheNodeType().equals(this.getCacheNodeType()) == false)
return false;
if (other.getNodeGroupId() == null ^ this.getNodeGroupId() == null)
return false;
if (other.getNodeGroupId() != null && other.getNodeGroupId().equals(this.getNodeGroupId()) == 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 + ((getReplicationGroupDescription() == null) ? 0 : getReplicationGroupDescription().hashCode());
hashCode = prime * hashCode + ((getPrimaryClusterId() == null) ? 0 : getPrimaryClusterId().hashCode());
hashCode = prime * hashCode + ((getSnapshottingClusterId() == null) ? 0 : getSnapshottingClusterId().hashCode());
hashCode = prime * hashCode + ((getAutomaticFailoverEnabled() == null) ? 0 : getAutomaticFailoverEnabled().hashCode());
hashCode = prime * hashCode + ((getCacheSecurityGroupNames() == null) ? 0 : getCacheSecurityGroupNames().hashCode());
hashCode = prime * hashCode + ((getSecurityGroupIds() == null) ? 0 : getSecurityGroupIds().hashCode());
hashCode = prime * hashCode + ((getPreferredMaintenanceWindow() == null) ? 0 : getPreferredMaintenanceWindow().hashCode());
hashCode = prime * hashCode + ((getNotificationTopicArn() == null) ? 0 : getNotificationTopicArn().hashCode());
hashCode = prime * hashCode + ((getCacheParameterGroupName() == null) ? 0 : getCacheParameterGroupName().hashCode());
hashCode = prime * hashCode + ((getNotificationTopicStatus() == null) ? 0 : getNotificationTopicStatus().hashCode());
hashCode = prime * hashCode + ((getApplyImmediately() == null) ? 0 : getApplyImmediately().hashCode());
hashCode = prime * hashCode + ((getEngineVersion() == null) ? 0 : getEngineVersion().hashCode());
hashCode = prime * hashCode + ((getAutoMinorVersionUpgrade() == null) ? 0 : getAutoMinorVersionUpgrade().hashCode());
hashCode = prime * hashCode + ((getSnapshotRetentionLimit() == null) ? 0 : getSnapshotRetentionLimit().hashCode());
hashCode = prime * hashCode + ((getSnapshotWindow() == null) ? 0 : getSnapshotWindow().hashCode());
hashCode = prime * hashCode + ((getCacheNodeType() == null) ? 0 : getCacheNodeType().hashCode());
hashCode = prime * hashCode + ((getNodeGroupId() == null) ? 0 : getNodeGroupId().hashCode());
return hashCode;
}
@Override
public ModifyReplicationGroupRequest clone() {
return (ModifyReplicationGroupRequest) super.clone();
}
}