com.amazonaws.services.codegurureviewer.model.KMSKeyDetails Maven / Gradle / Ivy
Show all versions of aws-java-sdk-codegurureviewer Show documentation
/*
* Copyright 2019-2024 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.codegurureviewer.model;
import java.io.Serializable;
import javax.annotation.Generated;
import com.amazonaws.protocol.StructuredPojo;
import com.amazonaws.protocol.ProtocolMarshaller;
/**
*
* An object that contains:
*
*
* -
*
* The encryption option for a repository association. It is either owned by Amazon Web Services Key Management Service
* (KMS) (AWS_OWNED_CMK
) or customer managed (CUSTOMER_MANAGED_CMK
).
*
*
* -
*
* The ID of the Amazon Web Services KMS key that is associated with a repository association.
*
*
*
*
* @see AWS
* API Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class KMSKeyDetails implements Serializable, Cloneable, StructuredPojo {
/**
*
* The ID of the Amazon Web Services KMS key that is associated with a repository association.
*
*/
private String kMSKeyId;
/**
*
* The encryption option for a repository association. It is either owned by Amazon Web Services Key Management
* Service (KMS) (AWS_OWNED_CMK
) or customer managed (CUSTOMER_MANAGED_CMK
).
*
*/
private String encryptionOption;
/**
*
* The ID of the Amazon Web Services KMS key that is associated with a repository association.
*
*
* @param kMSKeyId
* The ID of the Amazon Web Services KMS key that is associated with a repository association.
*/
public void setKMSKeyId(String kMSKeyId) {
this.kMSKeyId = kMSKeyId;
}
/**
*
* The ID of the Amazon Web Services KMS key that is associated with a repository association.
*
*
* @return The ID of the Amazon Web Services KMS key that is associated with a repository association.
*/
public String getKMSKeyId() {
return this.kMSKeyId;
}
/**
*
* The ID of the Amazon Web Services KMS key that is associated with a repository association.
*
*
* @param kMSKeyId
* The ID of the Amazon Web Services KMS key that is associated with a repository association.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public KMSKeyDetails withKMSKeyId(String kMSKeyId) {
setKMSKeyId(kMSKeyId);
return this;
}
/**
*
* The encryption option for a repository association. It is either owned by Amazon Web Services Key Management
* Service (KMS) (AWS_OWNED_CMK
) or customer managed (CUSTOMER_MANAGED_CMK
).
*
*
* @param encryptionOption
* The encryption option for a repository association. It is either owned by Amazon Web Services Key
* Management Service (KMS) (AWS_OWNED_CMK
) or customer managed (
* CUSTOMER_MANAGED_CMK
).
* @see EncryptionOption
*/
public void setEncryptionOption(String encryptionOption) {
this.encryptionOption = encryptionOption;
}
/**
*
* The encryption option for a repository association. It is either owned by Amazon Web Services Key Management
* Service (KMS) (AWS_OWNED_CMK
) or customer managed (CUSTOMER_MANAGED_CMK
).
*
*
* @return The encryption option for a repository association. It is either owned by Amazon Web Services Key
* Management Service (KMS) (AWS_OWNED_CMK
) or customer managed (
* CUSTOMER_MANAGED_CMK
).
* @see EncryptionOption
*/
public String getEncryptionOption() {
return this.encryptionOption;
}
/**
*
* The encryption option for a repository association. It is either owned by Amazon Web Services Key Management
* Service (KMS) (AWS_OWNED_CMK
) or customer managed (CUSTOMER_MANAGED_CMK
).
*
*
* @param encryptionOption
* The encryption option for a repository association. It is either owned by Amazon Web Services Key
* Management Service (KMS) (AWS_OWNED_CMK
) or customer managed (
* CUSTOMER_MANAGED_CMK
).
* @return Returns a reference to this object so that method calls can be chained together.
* @see EncryptionOption
*/
public KMSKeyDetails withEncryptionOption(String encryptionOption) {
setEncryptionOption(encryptionOption);
return this;
}
/**
*
* The encryption option for a repository association. It is either owned by Amazon Web Services Key Management
* Service (KMS) (AWS_OWNED_CMK
) or customer managed (CUSTOMER_MANAGED_CMK
).
*
*
* @param encryptionOption
* The encryption option for a repository association. It is either owned by Amazon Web Services Key
* Management Service (KMS) (AWS_OWNED_CMK
) or customer managed (
* CUSTOMER_MANAGED_CMK
).
* @return Returns a reference to this object so that method calls can be chained together.
* @see EncryptionOption
*/
public KMSKeyDetails withEncryptionOption(EncryptionOption encryptionOption) {
this.encryptionOption = encryptionOption.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 (getKMSKeyId() != null)
sb.append("KMSKeyId: ").append(getKMSKeyId()).append(",");
if (getEncryptionOption() != null)
sb.append("EncryptionOption: ").append(getEncryptionOption());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof KMSKeyDetails == false)
return false;
KMSKeyDetails other = (KMSKeyDetails) obj;
if (other.getKMSKeyId() == null ^ this.getKMSKeyId() == null)
return false;
if (other.getKMSKeyId() != null && other.getKMSKeyId().equals(this.getKMSKeyId()) == false)
return false;
if (other.getEncryptionOption() == null ^ this.getEncryptionOption() == null)
return false;
if (other.getEncryptionOption() != null && other.getEncryptionOption().equals(this.getEncryptionOption()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getKMSKeyId() == null) ? 0 : getKMSKeyId().hashCode());
hashCode = prime * hashCode + ((getEncryptionOption() == null) ? 0 : getEncryptionOption().hashCode());
return hashCode;
}
@Override
public KMSKeyDetails clone() {
try {
return (KMSKeyDetails) 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.codegurureviewer.model.transform.KMSKeyDetailsMarshaller.getInstance().marshall(this, protocolMarshaller);
}
}