com.amazonaws.services.securityhub.model.AwsDynamoDbTableProvisionedThroughput Maven / Gradle / Ivy
Show all versions of aws-java-sdk-securityhub Show documentation
/*
* Copyright 2016-2021 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.securityhub.model;
import java.io.Serializable;
import javax.annotation.Generated;
import com.amazonaws.protocol.StructuredPojo;
import com.amazonaws.protocol.ProtocolMarshaller;
/**
*
* Information about the provisioned throughput for the table or for a global secondary index.
*
*
* @see AWS API Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class AwsDynamoDbTableProvisionedThroughput implements Serializable, Cloneable, StructuredPojo {
/**
*
* Indicates when the provisioned throughput was last decreased.
*
*
* Uses the date-time
format specified in RFC
* 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces. For example,
* 2020-03-22T13:22:13.933Z
.
*
*/
private String lastDecreaseDateTime;
/**
*
* Indicates when the provisioned throughput was last increased.
*
*
* Uses the date-time
format specified in RFC
* 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces. For example,
* 2020-03-22T13:22:13.933Z
.
*
*/
private String lastIncreaseDateTime;
/**
*
* The number of times during the current UTC calendar day that the provisioned throughput was decreased.
*
*/
private Integer numberOfDecreasesToday;
/**
*
* The maximum number of strongly consistent reads consumed per second before DynamoDB returns a
* ThrottlingException
.
*
*/
private Integer readCapacityUnits;
/**
*
* The maximum number of writes consumed per second before DynamoDB returns a ThrottlingException
.
*
*/
private Integer writeCapacityUnits;
/**
*
* Indicates when the provisioned throughput was last decreased.
*
*
* Uses the date-time
format specified in RFC
* 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces. For example,
* 2020-03-22T13:22:13.933Z
.
*
*
* @param lastDecreaseDateTime
* Indicates when the provisioned throughput was last decreased.
*
* Uses the date-time
format specified in RFC 3339 section 5.6, Internet Date/Time
* Format. The value cannot contain spaces. For example, 2020-03-22T13:22:13.933Z
.
*/
public void setLastDecreaseDateTime(String lastDecreaseDateTime) {
this.lastDecreaseDateTime = lastDecreaseDateTime;
}
/**
*
* Indicates when the provisioned throughput was last decreased.
*
*
* Uses the date-time
format specified in RFC
* 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces. For example,
* 2020-03-22T13:22:13.933Z
.
*
*
* @return Indicates when the provisioned throughput was last decreased.
*
* Uses the date-time
format specified in RFC 3339 section 5.6, Internet Date/Time
* Format. The value cannot contain spaces. For example, 2020-03-22T13:22:13.933Z
.
*/
public String getLastDecreaseDateTime() {
return this.lastDecreaseDateTime;
}
/**
*
* Indicates when the provisioned throughput was last decreased.
*
*
* Uses the date-time
format specified in RFC
* 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces. For example,
* 2020-03-22T13:22:13.933Z
.
*
*
* @param lastDecreaseDateTime
* Indicates when the provisioned throughput was last decreased.
*
* Uses the date-time
format specified in RFC 3339 section 5.6, Internet Date/Time
* Format. The value cannot contain spaces. For example, 2020-03-22T13:22:13.933Z
.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public AwsDynamoDbTableProvisionedThroughput withLastDecreaseDateTime(String lastDecreaseDateTime) {
setLastDecreaseDateTime(lastDecreaseDateTime);
return this;
}
/**
*
* Indicates when the provisioned throughput was last increased.
*
*
* Uses the date-time
format specified in RFC
* 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces. For example,
* 2020-03-22T13:22:13.933Z
.
*
*
* @param lastIncreaseDateTime
* Indicates when the provisioned throughput was last increased.
*
* Uses the date-time
format specified in RFC 3339 section 5.6, Internet Date/Time
* Format. The value cannot contain spaces. For example, 2020-03-22T13:22:13.933Z
.
*/
public void setLastIncreaseDateTime(String lastIncreaseDateTime) {
this.lastIncreaseDateTime = lastIncreaseDateTime;
}
/**
*
* Indicates when the provisioned throughput was last increased.
*
*
* Uses the date-time
format specified in RFC
* 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces. For example,
* 2020-03-22T13:22:13.933Z
.
*
*
* @return Indicates when the provisioned throughput was last increased.
*
* Uses the date-time
format specified in RFC 3339 section 5.6, Internet Date/Time
* Format. The value cannot contain spaces. For example, 2020-03-22T13:22:13.933Z
.
*/
public String getLastIncreaseDateTime() {
return this.lastIncreaseDateTime;
}
/**
*
* Indicates when the provisioned throughput was last increased.
*
*
* Uses the date-time
format specified in RFC
* 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces. For example,
* 2020-03-22T13:22:13.933Z
.
*
*
* @param lastIncreaseDateTime
* Indicates when the provisioned throughput was last increased.
*
* Uses the date-time
format specified in RFC 3339 section 5.6, Internet Date/Time
* Format. The value cannot contain spaces. For example, 2020-03-22T13:22:13.933Z
.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public AwsDynamoDbTableProvisionedThroughput withLastIncreaseDateTime(String lastIncreaseDateTime) {
setLastIncreaseDateTime(lastIncreaseDateTime);
return this;
}
/**
*
* The number of times during the current UTC calendar day that the provisioned throughput was decreased.
*
*
* @param numberOfDecreasesToday
* The number of times during the current UTC calendar day that the provisioned throughput was decreased.
*/
public void setNumberOfDecreasesToday(Integer numberOfDecreasesToday) {
this.numberOfDecreasesToday = numberOfDecreasesToday;
}
/**
*
* The number of times during the current UTC calendar day that the provisioned throughput was decreased.
*
*
* @return The number of times during the current UTC calendar day that the provisioned throughput was decreased.
*/
public Integer getNumberOfDecreasesToday() {
return this.numberOfDecreasesToday;
}
/**
*
* The number of times during the current UTC calendar day that the provisioned throughput was decreased.
*
*
* @param numberOfDecreasesToday
* The number of times during the current UTC calendar day that the provisioned throughput was decreased.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public AwsDynamoDbTableProvisionedThroughput withNumberOfDecreasesToday(Integer numberOfDecreasesToday) {
setNumberOfDecreasesToday(numberOfDecreasesToday);
return this;
}
/**
*
* The maximum number of strongly consistent reads consumed per second before DynamoDB returns a
* ThrottlingException
.
*
*
* @param readCapacityUnits
* The maximum number of strongly consistent reads consumed per second before DynamoDB returns a
* ThrottlingException
.
*/
public void setReadCapacityUnits(Integer readCapacityUnits) {
this.readCapacityUnits = readCapacityUnits;
}
/**
*
* The maximum number of strongly consistent reads consumed per second before DynamoDB returns a
* ThrottlingException
.
*
*
* @return The maximum number of strongly consistent reads consumed per second before DynamoDB returns a
* ThrottlingException
.
*/
public Integer getReadCapacityUnits() {
return this.readCapacityUnits;
}
/**
*
* The maximum number of strongly consistent reads consumed per second before DynamoDB returns a
* ThrottlingException
.
*
*
* @param readCapacityUnits
* The maximum number of strongly consistent reads consumed per second before DynamoDB returns a
* ThrottlingException
.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public AwsDynamoDbTableProvisionedThroughput withReadCapacityUnits(Integer readCapacityUnits) {
setReadCapacityUnits(readCapacityUnits);
return this;
}
/**
*
* The maximum number of writes consumed per second before DynamoDB returns a ThrottlingException
.
*
*
* @param writeCapacityUnits
* The maximum number of writes consumed per second before DynamoDB returns a
* ThrottlingException
.
*/
public void setWriteCapacityUnits(Integer writeCapacityUnits) {
this.writeCapacityUnits = writeCapacityUnits;
}
/**
*
* The maximum number of writes consumed per second before DynamoDB returns a ThrottlingException
.
*
*
* @return The maximum number of writes consumed per second before DynamoDB returns a
* ThrottlingException
.
*/
public Integer getWriteCapacityUnits() {
return this.writeCapacityUnits;
}
/**
*
* The maximum number of writes consumed per second before DynamoDB returns a ThrottlingException
.
*
*
* @param writeCapacityUnits
* The maximum number of writes consumed per second before DynamoDB returns a
* ThrottlingException
.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public AwsDynamoDbTableProvisionedThroughput withWriteCapacityUnits(Integer writeCapacityUnits) {
setWriteCapacityUnits(writeCapacityUnits);
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 (getLastDecreaseDateTime() != null)
sb.append("LastDecreaseDateTime: ").append(getLastDecreaseDateTime()).append(",");
if (getLastIncreaseDateTime() != null)
sb.append("LastIncreaseDateTime: ").append(getLastIncreaseDateTime()).append(",");
if (getNumberOfDecreasesToday() != null)
sb.append("NumberOfDecreasesToday: ").append(getNumberOfDecreasesToday()).append(",");
if (getReadCapacityUnits() != null)
sb.append("ReadCapacityUnits: ").append(getReadCapacityUnits()).append(",");
if (getWriteCapacityUnits() != null)
sb.append("WriteCapacityUnits: ").append(getWriteCapacityUnits());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof AwsDynamoDbTableProvisionedThroughput == false)
return false;
AwsDynamoDbTableProvisionedThroughput other = (AwsDynamoDbTableProvisionedThroughput) obj;
if (other.getLastDecreaseDateTime() == null ^ this.getLastDecreaseDateTime() == null)
return false;
if (other.getLastDecreaseDateTime() != null && other.getLastDecreaseDateTime().equals(this.getLastDecreaseDateTime()) == false)
return false;
if (other.getLastIncreaseDateTime() == null ^ this.getLastIncreaseDateTime() == null)
return false;
if (other.getLastIncreaseDateTime() != null && other.getLastIncreaseDateTime().equals(this.getLastIncreaseDateTime()) == false)
return false;
if (other.getNumberOfDecreasesToday() == null ^ this.getNumberOfDecreasesToday() == null)
return false;
if (other.getNumberOfDecreasesToday() != null && other.getNumberOfDecreasesToday().equals(this.getNumberOfDecreasesToday()) == false)
return false;
if (other.getReadCapacityUnits() == null ^ this.getReadCapacityUnits() == null)
return false;
if (other.getReadCapacityUnits() != null && other.getReadCapacityUnits().equals(this.getReadCapacityUnits()) == false)
return false;
if (other.getWriteCapacityUnits() == null ^ this.getWriteCapacityUnits() == null)
return false;
if (other.getWriteCapacityUnits() != null && other.getWriteCapacityUnits().equals(this.getWriteCapacityUnits()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getLastDecreaseDateTime() == null) ? 0 : getLastDecreaseDateTime().hashCode());
hashCode = prime * hashCode + ((getLastIncreaseDateTime() == null) ? 0 : getLastIncreaseDateTime().hashCode());
hashCode = prime * hashCode + ((getNumberOfDecreasesToday() == null) ? 0 : getNumberOfDecreasesToday().hashCode());
hashCode = prime * hashCode + ((getReadCapacityUnits() == null) ? 0 : getReadCapacityUnits().hashCode());
hashCode = prime * hashCode + ((getWriteCapacityUnits() == null) ? 0 : getWriteCapacityUnits().hashCode());
return hashCode;
}
@Override
public AwsDynamoDbTableProvisionedThroughput clone() {
try {
return (AwsDynamoDbTableProvisionedThroughput) 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.securityhub.model.transform.AwsDynamoDbTableProvisionedThroughputMarshaller.getInstance().marshall(this, protocolMarshaller);
}
}