com.amazonaws.services.dynamodbv2.model.SSEDescription Maven / Gradle / Ivy
Show all versions of aws-java-sdk-dynamodb Show documentation
/*
* Copyright 2013-2018 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;
/**
*
* The description of the server-side encryption status on the specified table.
*
*
* @see AWS API
* Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class SSEDescription implements Serializable, Cloneable, StructuredPojo {
/**
*
* The current state of server-side encryption:
*
*
* -
*
* ENABLING
- Server-side encryption is being enabled.
*
*
* -
*
* ENABLED
- Server-side encryption is enabled.
*
*
* -
*
* DISABLING
- Server-side encryption is being disabled.
*
*
* -
*
* DISABLED
- Server-side encryption is disabled.
*
*
* -
*
* UPDATING
- Server-side encryption is being updated.
*
*
*
*/
private String status;
/**
*
* Server-side encryption type:
*
*
* -
*
* AES256
- Server-side encryption which uses the AES256 algorithm.
*
*
* -
*
* KMS
- Server-side encryption which uses AWS Key Management Service.
*
*
*
*/
private String sSEType;
/**
*
* The KMS master key ARN used for the KMS encryption.
*
*/
private String kMSMasterKeyArn;
/**
*
* The current state of server-side encryption:
*
*
* -
*
* ENABLING
- Server-side encryption is being enabled.
*
*
* -
*
* ENABLED
- Server-side encryption is enabled.
*
*
* -
*
* DISABLING
- Server-side encryption is being disabled.
*
*
* -
*
* DISABLED
- Server-side encryption is disabled.
*
*
* -
*
* UPDATING
- Server-side encryption is being updated.
*
*
*
*
* @param status
* The current state of server-side encryption:
*
* -
*
* ENABLING
- Server-side encryption is being enabled.
*
*
* -
*
* ENABLED
- Server-side encryption is enabled.
*
*
* -
*
* DISABLING
- Server-side encryption is being disabled.
*
*
* -
*
* DISABLED
- Server-side encryption is disabled.
*
*
* -
*
* UPDATING
- Server-side encryption is being updated.
*
*
* @see SSEStatus
*/
public void setStatus(String status) {
this.status = status;
}
/**
*
* The current state of server-side encryption:
*
*
* -
*
* ENABLING
- Server-side encryption is being enabled.
*
*
* -
*
* ENABLED
- Server-side encryption is enabled.
*
*
* -
*
* DISABLING
- Server-side encryption is being disabled.
*
*
* -
*
* DISABLED
- Server-side encryption is disabled.
*
*
* -
*
* UPDATING
- Server-side encryption is being updated.
*
*
*
*
* @return The current state of server-side encryption:
*
* -
*
* ENABLING
- Server-side encryption is being enabled.
*
*
* -
*
* ENABLED
- Server-side encryption is enabled.
*
*
* -
*
* DISABLING
- Server-side encryption is being disabled.
*
*
* -
*
* DISABLED
- Server-side encryption is disabled.
*
*
* -
*
* UPDATING
- Server-side encryption is being updated.
*
*
* @see SSEStatus
*/
public String getStatus() {
return this.status;
}
/**
*
* The current state of server-side encryption:
*
*
* -
*
* ENABLING
- Server-side encryption is being enabled.
*
*
* -
*
* ENABLED
- Server-side encryption is enabled.
*
*
* -
*
* DISABLING
- Server-side encryption is being disabled.
*
*
* -
*
* DISABLED
- Server-side encryption is disabled.
*
*
* -
*
* UPDATING
- Server-side encryption is being updated.
*
*
*
*
* @param status
* The current state of server-side encryption:
*
* -
*
* ENABLING
- Server-side encryption is being enabled.
*
*
* -
*
* ENABLED
- Server-side encryption is enabled.
*
*
* -
*
* DISABLING
- Server-side encryption is being disabled.
*
*
* -
*
* DISABLED
- Server-side encryption is disabled.
*
*
* -
*
* UPDATING
- Server-side encryption is being updated.
*
*
* @return Returns a reference to this object so that method calls can be chained together.
* @see SSEStatus
*/
public SSEDescription withStatus(String status) {
setStatus(status);
return this;
}
/**
*
* The current state of server-side encryption:
*
*
* -
*
* ENABLING
- Server-side encryption is being enabled.
*
*
* -
*
* ENABLED
- Server-side encryption is enabled.
*
*
* -
*
* DISABLING
- Server-side encryption is being disabled.
*
*
* -
*
* DISABLED
- Server-side encryption is disabled.
*
*
* -
*
* UPDATING
- Server-side encryption is being updated.
*
*
*
*
* @param status
* The current state of server-side encryption:
*
* -
*
* ENABLING
- Server-side encryption is being enabled.
*
*
* -
*
* ENABLED
- Server-side encryption is enabled.
*
*
* -
*
* DISABLING
- Server-side encryption is being disabled.
*
*
* -
*
* DISABLED
- Server-side encryption is disabled.
*
*
* -
*
* UPDATING
- Server-side encryption is being updated.
*
*
* @return Returns a reference to this object so that method calls can be chained together.
* @see SSEStatus
*/
public SSEDescription withStatus(SSEStatus status) {
this.status = status.toString();
return this;
}
/**
*
* Server-side encryption type:
*
*
* -
*
* AES256
- Server-side encryption which uses the AES256 algorithm.
*
*
* -
*
* KMS
- Server-side encryption which uses AWS Key Management Service.
*
*
*
*
* @param sSEType
* Server-side encryption type:
*
* -
*
* AES256
- Server-side encryption which uses the AES256 algorithm.
*
*
* -
*
* KMS
- Server-side encryption which uses AWS Key Management Service.
*
*
* @see SSEType
*/
public void setSSEType(String sSEType) {
this.sSEType = sSEType;
}
/**
*
* Server-side encryption type:
*
*
* -
*
* AES256
- Server-side encryption which uses the AES256 algorithm.
*
*
* -
*
* KMS
- Server-side encryption which uses AWS Key Management Service.
*
*
*
*
* @return Server-side encryption type:
*
* -
*
* AES256
- Server-side encryption which uses the AES256 algorithm.
*
*
* -
*
* KMS
- Server-side encryption which uses AWS Key Management Service.
*
*
* @see SSEType
*/
public String getSSEType() {
return this.sSEType;
}
/**
*
* Server-side encryption type:
*
*
* -
*
* AES256
- Server-side encryption which uses the AES256 algorithm.
*
*
* -
*
* KMS
- Server-side encryption which uses AWS Key Management Service.
*
*
*
*
* @param sSEType
* Server-side encryption type:
*
* -
*
* AES256
- Server-side encryption which uses the AES256 algorithm.
*
*
* -
*
* KMS
- Server-side encryption which uses AWS Key Management Service.
*
*
* @return Returns a reference to this object so that method calls can be chained together.
* @see SSEType
*/
public SSEDescription withSSEType(String sSEType) {
setSSEType(sSEType);
return this;
}
/**
*
* Server-side encryption type:
*
*
* -
*
* AES256
- Server-side encryption which uses the AES256 algorithm.
*
*
* -
*
* KMS
- Server-side encryption which uses AWS Key Management Service.
*
*
*
*
* @param sSEType
* Server-side encryption type:
*
* -
*
* AES256
- Server-side encryption which uses the AES256 algorithm.
*
*
* -
*
* KMS
- Server-side encryption which uses AWS Key Management Service.
*
*
* @return Returns a reference to this object so that method calls can be chained together.
* @see SSEType
*/
public SSEDescription withSSEType(SSEType sSEType) {
this.sSEType = sSEType.toString();
return this;
}
/**
*
* The KMS master key ARN used for the KMS encryption.
*
*
* @param kMSMasterKeyArn
* The KMS master key ARN used for the KMS encryption.
*/
public void setKMSMasterKeyArn(String kMSMasterKeyArn) {
this.kMSMasterKeyArn = kMSMasterKeyArn;
}
/**
*
* The KMS master key ARN used for the KMS encryption.
*
*
* @return The KMS master key ARN used for the KMS encryption.
*/
public String getKMSMasterKeyArn() {
return this.kMSMasterKeyArn;
}
/**
*
* The KMS master key ARN used for the KMS encryption.
*
*
* @param kMSMasterKeyArn
* The KMS master key ARN used for the KMS encryption.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public SSEDescription withKMSMasterKeyArn(String kMSMasterKeyArn) {
setKMSMasterKeyArn(kMSMasterKeyArn);
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 (getStatus() != null)
sb.append("Status: ").append(getStatus()).append(",");
if (getSSEType() != null)
sb.append("SSEType: ").append(getSSEType()).append(",");
if (getKMSMasterKeyArn() != null)
sb.append("KMSMasterKeyArn: ").append(getKMSMasterKeyArn());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof SSEDescription == false)
return false;
SSEDescription other = (SSEDescription) obj;
if (other.getStatus() == null ^ this.getStatus() == null)
return false;
if (other.getStatus() != null && other.getStatus().equals(this.getStatus()) == false)
return false;
if (other.getSSEType() == null ^ this.getSSEType() == null)
return false;
if (other.getSSEType() != null && other.getSSEType().equals(this.getSSEType()) == false)
return false;
if (other.getKMSMasterKeyArn() == null ^ this.getKMSMasterKeyArn() == null)
return false;
if (other.getKMSMasterKeyArn() != null && other.getKMSMasterKeyArn().equals(this.getKMSMasterKeyArn()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getStatus() == null) ? 0 : getStatus().hashCode());
hashCode = prime * hashCode + ((getSSEType() == null) ? 0 : getSSEType().hashCode());
hashCode = prime * hashCode + ((getKMSMasterKeyArn() == null) ? 0 : getKMSMasterKeyArn().hashCode());
return hashCode;
}
@Override
public SSEDescription clone() {
try {
return (SSEDescription) 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.SSEDescriptionMarshaller.getInstance().marshall(this, protocolMarshaller);
}
}