com.amazonaws.services.cloudfront.model.EncryptionEntity Maven / Gradle / Ivy
Show all versions of aws-java-sdk-cloudfront Show documentation
/*
* Copyright 2015-2020 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.cloudfront.model;
import java.io.Serializable;
import javax.annotation.Generated;
/**
*
* Complex data type for field-level encryption profiles that includes the encryption key and field pattern
* specifications.
*
*
* @see AWS API
* Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class EncryptionEntity implements Serializable, Cloneable {
/**
*
* The public key associated with a set of field-level encryption patterns, to be used when encrypting the fields
* that match the patterns.
*
*/
private String publicKeyId;
/**
*
* The provider associated with the public key being used for encryption. This value must also be provided with the
* private key for applications to be able to decrypt data.
*
*/
private String providerId;
/**
*
* Field patterns in a field-level encryption content type profile specify the fields that you want to be encrypted.
* You can provide the full field name, or any beginning characters followed by a wildcard (*). You can't overlap
* field patterns. For example, you can't have both ABC* and AB*. Note that field patterns are case-sensitive.
*
*/
private FieldPatterns fieldPatterns;
/**
*
* The public key associated with a set of field-level encryption patterns, to be used when encrypting the fields
* that match the patterns.
*
*
* @param publicKeyId
* The public key associated with a set of field-level encryption patterns, to be used when encrypting the
* fields that match the patterns.
*/
public void setPublicKeyId(String publicKeyId) {
this.publicKeyId = publicKeyId;
}
/**
*
* The public key associated with a set of field-level encryption patterns, to be used when encrypting the fields
* that match the patterns.
*
*
* @return The public key associated with a set of field-level encryption patterns, to be used when encrypting the
* fields that match the patterns.
*/
public String getPublicKeyId() {
return this.publicKeyId;
}
/**
*
* The public key associated with a set of field-level encryption patterns, to be used when encrypting the fields
* that match the patterns.
*
*
* @param publicKeyId
* The public key associated with a set of field-level encryption patterns, to be used when encrypting the
* fields that match the patterns.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public EncryptionEntity withPublicKeyId(String publicKeyId) {
setPublicKeyId(publicKeyId);
return this;
}
/**
*
* The provider associated with the public key being used for encryption. This value must also be provided with the
* private key for applications to be able to decrypt data.
*
*
* @param providerId
* The provider associated with the public key being used for encryption. This value must also be provided
* with the private key for applications to be able to decrypt data.
*/
public void setProviderId(String providerId) {
this.providerId = providerId;
}
/**
*
* The provider associated with the public key being used for encryption. This value must also be provided with the
* private key for applications to be able to decrypt data.
*
*
* @return The provider associated with the public key being used for encryption. This value must also be provided
* with the private key for applications to be able to decrypt data.
*/
public String getProviderId() {
return this.providerId;
}
/**
*
* The provider associated with the public key being used for encryption. This value must also be provided with the
* private key for applications to be able to decrypt data.
*
*
* @param providerId
* The provider associated with the public key being used for encryption. This value must also be provided
* with the private key for applications to be able to decrypt data.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public EncryptionEntity withProviderId(String providerId) {
setProviderId(providerId);
return this;
}
/**
*
* Field patterns in a field-level encryption content type profile specify the fields that you want to be encrypted.
* You can provide the full field name, or any beginning characters followed by a wildcard (*). You can't overlap
* field patterns. For example, you can't have both ABC* and AB*. Note that field patterns are case-sensitive.
*
*
* @param fieldPatterns
* Field patterns in a field-level encryption content type profile specify the fields that you want to be
* encrypted. You can provide the full field name, or any beginning characters followed by a wildcard (*).
* You can't overlap field patterns. For example, you can't have both ABC* and AB*. Note that field patterns
* are case-sensitive.
*/
public void setFieldPatterns(FieldPatterns fieldPatterns) {
this.fieldPatterns = fieldPatterns;
}
/**
*
* Field patterns in a field-level encryption content type profile specify the fields that you want to be encrypted.
* You can provide the full field name, or any beginning characters followed by a wildcard (*). You can't overlap
* field patterns. For example, you can't have both ABC* and AB*. Note that field patterns are case-sensitive.
*
*
* @return Field patterns in a field-level encryption content type profile specify the fields that you want to be
* encrypted. You can provide the full field name, or any beginning characters followed by a wildcard (*).
* You can't overlap field patterns. For example, you can't have both ABC* and AB*. Note that field patterns
* are case-sensitive.
*/
public FieldPatterns getFieldPatterns() {
return this.fieldPatterns;
}
/**
*
* Field patterns in a field-level encryption content type profile specify the fields that you want to be encrypted.
* You can provide the full field name, or any beginning characters followed by a wildcard (*). You can't overlap
* field patterns. For example, you can't have both ABC* and AB*. Note that field patterns are case-sensitive.
*
*
* @param fieldPatterns
* Field patterns in a field-level encryption content type profile specify the fields that you want to be
* encrypted. You can provide the full field name, or any beginning characters followed by a wildcard (*).
* You can't overlap field patterns. For example, you can't have both ABC* and AB*. Note that field patterns
* are case-sensitive.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public EncryptionEntity withFieldPatterns(FieldPatterns fieldPatterns) {
setFieldPatterns(fieldPatterns);
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 (getPublicKeyId() != null)
sb.append("PublicKeyId: ").append(getPublicKeyId()).append(",");
if (getProviderId() != null)
sb.append("ProviderId: ").append(getProviderId()).append(",");
if (getFieldPatterns() != null)
sb.append("FieldPatterns: ").append(getFieldPatterns());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof EncryptionEntity == false)
return false;
EncryptionEntity other = (EncryptionEntity) obj;
if (other.getPublicKeyId() == null ^ this.getPublicKeyId() == null)
return false;
if (other.getPublicKeyId() != null && other.getPublicKeyId().equals(this.getPublicKeyId()) == false)
return false;
if (other.getProviderId() == null ^ this.getProviderId() == null)
return false;
if (other.getProviderId() != null && other.getProviderId().equals(this.getProviderId()) == false)
return false;
if (other.getFieldPatterns() == null ^ this.getFieldPatterns() == null)
return false;
if (other.getFieldPatterns() != null && other.getFieldPatterns().equals(this.getFieldPatterns()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getPublicKeyId() == null) ? 0 : getPublicKeyId().hashCode());
hashCode = prime * hashCode + ((getProviderId() == null) ? 0 : getProviderId().hashCode());
hashCode = prime * hashCode + ((getFieldPatterns() == null) ? 0 : getFieldPatterns().hashCode());
return hashCode;
}
@Override
public EncryptionEntity clone() {
try {
return (EncryptionEntity) super.clone();
} catch (CloneNotSupportedException e) {
throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e);
}
}
}