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

com.amazonaws.services.dynamodbv2.model.ReplicaSettingsUpdate Maven / Gradle / Ivy

/*
 * Copyright 2017-2022 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.dynamodbv2.model;

import java.io.Serializable;
import javax.annotation.Generated;
import com.amazonaws.protocol.StructuredPojo;
import com.amazonaws.protocol.ProtocolMarshaller;

/**
 * 

* Represents the settings for a global table in a Region that will be modified. *

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

* The Region of the replica to be added. *

*/ private String regionName; /** *

* The maximum number of strongly consistent reads consumed per second before DynamoDB returns a * ThrottlingException. For more information, see Specifying Read and Write Requirements in the Amazon DynamoDB Developer Guide. *

*/ private Long replicaProvisionedReadCapacityUnits; /** *

* Auto scaling settings for managing a global table replica's read capacity units. *

*/ private AutoScalingSettingsUpdate replicaProvisionedReadCapacityAutoScalingSettingsUpdate; /** *

* Represents the settings of a global secondary index for a global table that will be modified. *

*/ private java.util.List replicaGlobalSecondaryIndexSettingsUpdate; /** *

* Replica-specific table class. If not specified, uses the source table's table class. *

*/ private String replicaTableClass; /** *

* The Region of the replica to be added. *

* * @param regionName * The Region of the replica to be added. */ public void setRegionName(String regionName) { this.regionName = regionName; } /** *

* The Region of the replica to be added. *

* * @return The Region of the replica to be added. */ public String getRegionName() { return this.regionName; } /** *

* The Region of the replica to be added. *

* * @param regionName * The Region of the replica to be added. * @return Returns a reference to this object so that method calls can be chained together. */ public ReplicaSettingsUpdate withRegionName(String regionName) { setRegionName(regionName); return this; } /** *

* The maximum number of strongly consistent reads consumed per second before DynamoDB returns a * ThrottlingException. For more information, see Specifying Read and Write Requirements in the Amazon DynamoDB Developer Guide. *

* * @param replicaProvisionedReadCapacityUnits * The maximum number of strongly consistent reads consumed per second before DynamoDB returns a * ThrottlingException. For more information, see Specifying Read and Write Requirements in the Amazon DynamoDB Developer Guide. */ public void setReplicaProvisionedReadCapacityUnits(Long replicaProvisionedReadCapacityUnits) { this.replicaProvisionedReadCapacityUnits = replicaProvisionedReadCapacityUnits; } /** *

* The maximum number of strongly consistent reads consumed per second before DynamoDB returns a * ThrottlingException. For more information, see Specifying Read and Write Requirements in the Amazon DynamoDB Developer Guide. *

* * @return The maximum number of strongly consistent reads consumed per second before DynamoDB returns a * ThrottlingException. For more information, see Specifying Read and Write Requirements in the Amazon DynamoDB Developer Guide. */ public Long getReplicaProvisionedReadCapacityUnits() { return this.replicaProvisionedReadCapacityUnits; } /** *

* The maximum number of strongly consistent reads consumed per second before DynamoDB returns a * ThrottlingException. For more information, see Specifying Read and Write Requirements in the Amazon DynamoDB Developer Guide. *

* * @param replicaProvisionedReadCapacityUnits * The maximum number of strongly consistent reads consumed per second before DynamoDB returns a * ThrottlingException. For more information, see Specifying Read and Write Requirements in the Amazon DynamoDB Developer Guide. * @return Returns a reference to this object so that method calls can be chained together. */ public ReplicaSettingsUpdate withReplicaProvisionedReadCapacityUnits(Long replicaProvisionedReadCapacityUnits) { setReplicaProvisionedReadCapacityUnits(replicaProvisionedReadCapacityUnits); return this; } /** *

* Auto scaling settings for managing a global table replica's read capacity units. *

* * @param replicaProvisionedReadCapacityAutoScalingSettingsUpdate * Auto scaling settings for managing a global table replica's read capacity units. */ public void setReplicaProvisionedReadCapacityAutoScalingSettingsUpdate(AutoScalingSettingsUpdate replicaProvisionedReadCapacityAutoScalingSettingsUpdate) { this.replicaProvisionedReadCapacityAutoScalingSettingsUpdate = replicaProvisionedReadCapacityAutoScalingSettingsUpdate; } /** *

* Auto scaling settings for managing a global table replica's read capacity units. *

* * @return Auto scaling settings for managing a global table replica's read capacity units. */ public AutoScalingSettingsUpdate getReplicaProvisionedReadCapacityAutoScalingSettingsUpdate() { return this.replicaProvisionedReadCapacityAutoScalingSettingsUpdate; } /** *

* Auto scaling settings for managing a global table replica's read capacity units. *

* * @param replicaProvisionedReadCapacityAutoScalingSettingsUpdate * Auto scaling settings for managing a global table replica's read capacity units. * @return Returns a reference to this object so that method calls can be chained together. */ public ReplicaSettingsUpdate withReplicaProvisionedReadCapacityAutoScalingSettingsUpdate( AutoScalingSettingsUpdate replicaProvisionedReadCapacityAutoScalingSettingsUpdate) { setReplicaProvisionedReadCapacityAutoScalingSettingsUpdate(replicaProvisionedReadCapacityAutoScalingSettingsUpdate); return this; } /** *

* Represents the settings of a global secondary index for a global table that will be modified. *

* * @return Represents the settings of a global secondary index for a global table that will be modified. */ public java.util.List getReplicaGlobalSecondaryIndexSettingsUpdate() { return replicaGlobalSecondaryIndexSettingsUpdate; } /** *

* Represents the settings of a global secondary index for a global table that will be modified. *

* * @param replicaGlobalSecondaryIndexSettingsUpdate * Represents the settings of a global secondary index for a global table that will be modified. */ public void setReplicaGlobalSecondaryIndexSettingsUpdate( java.util.Collection replicaGlobalSecondaryIndexSettingsUpdate) { if (replicaGlobalSecondaryIndexSettingsUpdate == null) { this.replicaGlobalSecondaryIndexSettingsUpdate = null; return; } this.replicaGlobalSecondaryIndexSettingsUpdate = new java.util.ArrayList( replicaGlobalSecondaryIndexSettingsUpdate); } /** *

* Represents the settings of a global secondary index for a global table that will be modified. *

*

* NOTE: This method appends the values to the existing list (if any). Use * {@link #setReplicaGlobalSecondaryIndexSettingsUpdate(java.util.Collection)} or * {@link #withReplicaGlobalSecondaryIndexSettingsUpdate(java.util.Collection)} if you want to override the existing * values. *

* * @param replicaGlobalSecondaryIndexSettingsUpdate * Represents the settings of a global secondary index for a global table that will be modified. * @return Returns a reference to this object so that method calls can be chained together. */ public ReplicaSettingsUpdate withReplicaGlobalSecondaryIndexSettingsUpdate( ReplicaGlobalSecondaryIndexSettingsUpdate... replicaGlobalSecondaryIndexSettingsUpdate) { if (this.replicaGlobalSecondaryIndexSettingsUpdate == null) { setReplicaGlobalSecondaryIndexSettingsUpdate(new java.util.ArrayList( replicaGlobalSecondaryIndexSettingsUpdate.length)); } for (ReplicaGlobalSecondaryIndexSettingsUpdate ele : replicaGlobalSecondaryIndexSettingsUpdate) { this.replicaGlobalSecondaryIndexSettingsUpdate.add(ele); } return this; } /** *

* Represents the settings of a global secondary index for a global table that will be modified. *

* * @param replicaGlobalSecondaryIndexSettingsUpdate * Represents the settings of a global secondary index for a global table that will be modified. * @return Returns a reference to this object so that method calls can be chained together. */ public ReplicaSettingsUpdate withReplicaGlobalSecondaryIndexSettingsUpdate( java.util.Collection replicaGlobalSecondaryIndexSettingsUpdate) { setReplicaGlobalSecondaryIndexSettingsUpdate(replicaGlobalSecondaryIndexSettingsUpdate); return this; } /** *

* Replica-specific table class. If not specified, uses the source table's table class. *

* * @param replicaTableClass * Replica-specific table class. If not specified, uses the source table's table class. * @see TableClass */ public void setReplicaTableClass(String replicaTableClass) { this.replicaTableClass = replicaTableClass; } /** *

* Replica-specific table class. If not specified, uses the source table's table class. *

* * @return Replica-specific table class. If not specified, uses the source table's table class. * @see TableClass */ public String getReplicaTableClass() { return this.replicaTableClass; } /** *

* Replica-specific table class. If not specified, uses the source table's table class. *

* * @param replicaTableClass * Replica-specific table class. If not specified, uses the source table's table class. * @return Returns a reference to this object so that method calls can be chained together. * @see TableClass */ public ReplicaSettingsUpdate withReplicaTableClass(String replicaTableClass) { setReplicaTableClass(replicaTableClass); return this; } /** *

* Replica-specific table class. If not specified, uses the source table's table class. *

* * @param replicaTableClass * Replica-specific table class. If not specified, uses the source table's table class. * @return Returns a reference to this object so that method calls can be chained together. * @see TableClass */ public ReplicaSettingsUpdate withReplicaTableClass(TableClass replicaTableClass) { this.replicaTableClass = replicaTableClass.toString(); 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 (getRegionName() != null) sb.append("RegionName: ").append(getRegionName()).append(","); if (getReplicaProvisionedReadCapacityUnits() != null) sb.append("ReplicaProvisionedReadCapacityUnits: ").append(getReplicaProvisionedReadCapacityUnits()).append(","); if (getReplicaProvisionedReadCapacityAutoScalingSettingsUpdate() != null) sb.append("ReplicaProvisionedReadCapacityAutoScalingSettingsUpdate: ").append(getReplicaProvisionedReadCapacityAutoScalingSettingsUpdate()) .append(","); if (getReplicaGlobalSecondaryIndexSettingsUpdate() != null) sb.append("ReplicaGlobalSecondaryIndexSettingsUpdate: ").append(getReplicaGlobalSecondaryIndexSettingsUpdate()).append(","); if (getReplicaTableClass() != null) sb.append("ReplicaTableClass: ").append(getReplicaTableClass()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof ReplicaSettingsUpdate == false) return false; ReplicaSettingsUpdate other = (ReplicaSettingsUpdate) obj; if (other.getRegionName() == null ^ this.getRegionName() == null) return false; if (other.getRegionName() != null && other.getRegionName().equals(this.getRegionName()) == false) return false; if (other.getReplicaProvisionedReadCapacityUnits() == null ^ this.getReplicaProvisionedReadCapacityUnits() == null) return false; if (other.getReplicaProvisionedReadCapacityUnits() != null && other.getReplicaProvisionedReadCapacityUnits().equals(this.getReplicaProvisionedReadCapacityUnits()) == false) return false; if (other.getReplicaProvisionedReadCapacityAutoScalingSettingsUpdate() == null ^ this.getReplicaProvisionedReadCapacityAutoScalingSettingsUpdate() == null) return false; if (other.getReplicaProvisionedReadCapacityAutoScalingSettingsUpdate() != null && other.getReplicaProvisionedReadCapacityAutoScalingSettingsUpdate().equals(this.getReplicaProvisionedReadCapacityAutoScalingSettingsUpdate()) == false) return false; if (other.getReplicaGlobalSecondaryIndexSettingsUpdate() == null ^ this.getReplicaGlobalSecondaryIndexSettingsUpdate() == null) return false; if (other.getReplicaGlobalSecondaryIndexSettingsUpdate() != null && other.getReplicaGlobalSecondaryIndexSettingsUpdate().equals(this.getReplicaGlobalSecondaryIndexSettingsUpdate()) == false) return false; if (other.getReplicaTableClass() == null ^ this.getReplicaTableClass() == null) return false; if (other.getReplicaTableClass() != null && other.getReplicaTableClass().equals(this.getReplicaTableClass()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getRegionName() == null) ? 0 : getRegionName().hashCode()); hashCode = prime * hashCode + ((getReplicaProvisionedReadCapacityUnits() == null) ? 0 : getReplicaProvisionedReadCapacityUnits().hashCode()); hashCode = prime * hashCode + ((getReplicaProvisionedReadCapacityAutoScalingSettingsUpdate() == null) ? 0 : getReplicaProvisionedReadCapacityAutoScalingSettingsUpdate() .hashCode()); hashCode = prime * hashCode + ((getReplicaGlobalSecondaryIndexSettingsUpdate() == null) ? 0 : getReplicaGlobalSecondaryIndexSettingsUpdate().hashCode()); hashCode = prime * hashCode + ((getReplicaTableClass() == null) ? 0 : getReplicaTableClass().hashCode()); return hashCode; } @Override public ReplicaSettingsUpdate clone() { try { return (ReplicaSettingsUpdate) 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.dynamodbv2.model.transform.ReplicaSettingsUpdateMarshaller.getInstance().marshall(this, protocolMarshaller); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy