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

com.amazonaws.services.accessanalyzer.model.KmsKeyConfiguration Maven / Gradle / Ivy

/*
 * 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.accessanalyzer.model;

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

/**
 * 

* Proposed access control configuration for a KMS key. You can propose a configuration for a new KMS key or an existing * KMS key that you own by specifying the key policy and KMS grant configuration. If the configuration is for an * existing key and you do not specify the key policy, the access preview uses the existing policy for the key. If the * access preview is for a new resource and you do not specify the key policy, then the access preview uses the default * key policy. The proposed key policy cannot be an empty string. For more information, see Default key * policy. For more information about key policy limits, see Resource quotas. *

*

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

* Resource policy configuration for the KMS key. The only valid value for the name of the key policy is * default. For more information, see Default key * policy. *

*/ private java.util.Map keyPolicies; /** *

* A list of proposed grant configurations for the KMS key. If the proposed grant configuration is for an existing * key, the access preview uses the proposed list of grant configurations in place of the existing grants. * Otherwise, the access preview uses the existing grants for the key. *

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

* Resource policy configuration for the KMS key. The only valid value for the name of the key policy is * default. For more information, see Default key * policy. *

* * @return Resource policy configuration for the KMS key. The only valid value for the name of the key policy is * default. For more information, see Default * key policy. */ public java.util.Map getKeyPolicies() { return keyPolicies; } /** *

* Resource policy configuration for the KMS key. The only valid value for the name of the key policy is * default. For more information, see Default key * policy. *

* * @param keyPolicies * Resource policy configuration for the KMS key. The only valid value for the name of the key policy is * default. For more information, see Default * key policy. */ public void setKeyPolicies(java.util.Map keyPolicies) { this.keyPolicies = keyPolicies; } /** *

* Resource policy configuration for the KMS key. The only valid value for the name of the key policy is * default. For more information, see Default key * policy. *

* * @param keyPolicies * Resource policy configuration for the KMS key. The only valid value for the name of the key policy is * default. For more information, see Default * key policy. * @return Returns a reference to this object so that method calls can be chained together. */ public KmsKeyConfiguration withKeyPolicies(java.util.Map keyPolicies) { setKeyPolicies(keyPolicies); return this; } /** * Add a single KeyPolicies entry * * @see KmsKeyConfiguration#withKeyPolicies * @returns a reference to this object so that method calls can be chained together. */ public KmsKeyConfiguration addKeyPoliciesEntry(String key, String value) { if (null == this.keyPolicies) { this.keyPolicies = new java.util.HashMap(); } if (this.keyPolicies.containsKey(key)) throw new IllegalArgumentException("Duplicated keys (" + key.toString() + ") are provided."); this.keyPolicies.put(key, value); return this; } /** * Removes all the entries added into KeyPolicies. * * @return Returns a reference to this object so that method calls can be chained together. */ public KmsKeyConfiguration clearKeyPoliciesEntries() { this.keyPolicies = null; return this; } /** *

* A list of proposed grant configurations for the KMS key. If the proposed grant configuration is for an existing * key, the access preview uses the proposed list of grant configurations in place of the existing grants. * Otherwise, the access preview uses the existing grants for the key. *

* * @return A list of proposed grant configurations for the KMS key. If the proposed grant configuration is for an * existing key, the access preview uses the proposed list of grant configurations in place of the existing * grants. Otherwise, the access preview uses the existing grants for the key. */ public java.util.List getGrants() { return grants; } /** *

* A list of proposed grant configurations for the KMS key. If the proposed grant configuration is for an existing * key, the access preview uses the proposed list of grant configurations in place of the existing grants. * Otherwise, the access preview uses the existing grants for the key. *

* * @param grants * A list of proposed grant configurations for the KMS key. If the proposed grant configuration is for an * existing key, the access preview uses the proposed list of grant configurations in place of the existing * grants. Otherwise, the access preview uses the existing grants for the key. */ public void setGrants(java.util.Collection grants) { if (grants == null) { this.grants = null; return; } this.grants = new java.util.ArrayList(grants); } /** *

* A list of proposed grant configurations for the KMS key. If the proposed grant configuration is for an existing * key, the access preview uses the proposed list of grant configurations in place of the existing grants. * Otherwise, the access preview uses the existing grants for the key. *

*

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

* * @param grants * A list of proposed grant configurations for the KMS key. If the proposed grant configuration is for an * existing key, the access preview uses the proposed list of grant configurations in place of the existing * grants. Otherwise, the access preview uses the existing grants for the key. * @return Returns a reference to this object so that method calls can be chained together. */ public KmsKeyConfiguration withGrants(KmsGrantConfiguration... grants) { if (this.grants == null) { setGrants(new java.util.ArrayList(grants.length)); } for (KmsGrantConfiguration ele : grants) { this.grants.add(ele); } return this; } /** *

* A list of proposed grant configurations for the KMS key. If the proposed grant configuration is for an existing * key, the access preview uses the proposed list of grant configurations in place of the existing grants. * Otherwise, the access preview uses the existing grants for the key. *

* * @param grants * A list of proposed grant configurations for the KMS key. If the proposed grant configuration is for an * existing key, the access preview uses the proposed list of grant configurations in place of the existing * grants. Otherwise, the access preview uses the existing grants for the key. * @return Returns a reference to this object so that method calls can be chained together. */ public KmsKeyConfiguration withGrants(java.util.Collection grants) { setGrants(grants); 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 (getKeyPolicies() != null) sb.append("KeyPolicies: ").append(getKeyPolicies()).append(","); if (getGrants() != null) sb.append("Grants: ").append(getGrants()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof KmsKeyConfiguration == false) return false; KmsKeyConfiguration other = (KmsKeyConfiguration) obj; if (other.getKeyPolicies() == null ^ this.getKeyPolicies() == null) return false; if (other.getKeyPolicies() != null && other.getKeyPolicies().equals(this.getKeyPolicies()) == false) return false; if (other.getGrants() == null ^ this.getGrants() == null) return false; if (other.getGrants() != null && other.getGrants().equals(this.getGrants()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getKeyPolicies() == null) ? 0 : getKeyPolicies().hashCode()); hashCode = prime * hashCode + ((getGrants() == null) ? 0 : getGrants().hashCode()); return hashCode; } @Override public KmsKeyConfiguration clone() { try { return (KmsKeyConfiguration) 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.accessanalyzer.model.transform.KmsKeyConfigurationMarshaller.getInstance().marshall(this, protocolMarshaller); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy