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

com.amazonaws.services.entityresolution.model.AddPolicyStatementRequest Maven / Gradle / Ivy

Go to download

The AWS Java SDK for AWS EntityResolution module holds the client classes that are used for communicating with AWS EntityResolution Service

The newest version!
/*
 * 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.entityresolution.model;

import java.io.Serializable;
import javax.annotation.Generated;

import com.amazonaws.AmazonWebServiceRequest;

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

    /**
     * 

* The action that the principal can use on the resource. *

*

* For example, entityresolution:GetIdMappingJob, entityresolution:GetMatchingJob. *

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

* The Amazon Resource Name (ARN) of the resource that will be accessed by the principal. *

*/ private String arn; /** *

* A set of condition keys that you can use in key policies. *

*/ private String condition; /** *

* Determines whether the permissions specified in the policy are to be allowed (Allow) or denied ( * Deny). *

* *

* If you set the value of the effect parameter to Deny for the * AddPolicyStatement operation, you must also set the value of the effect parameter in * the policy to Deny for the PutPolicy operation. *

*
*/ private String effect; /** *

* The Amazon Web Services service or Amazon Web Services account that can access the resource defined as ARN. *

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

* A statement identifier that differentiates the statement from others in the same policy. *

*/ private String statementId; /** *

* The action that the principal can use on the resource. *

*

* For example, entityresolution:GetIdMappingJob, entityresolution:GetMatchingJob. *

* * @return The action that the principal can use on the resource.

*

* For example, entityresolution:GetIdMappingJob, entityresolution:GetMatchingJob. */ public java.util.List getAction() { return action; } /** *

* The action that the principal can use on the resource. *

*

* For example, entityresolution:GetIdMappingJob, entityresolution:GetMatchingJob. *

* * @param action * The action that the principal can use on the resource.

*

* For example, entityresolution:GetIdMappingJob, entityresolution:GetMatchingJob. */ public void setAction(java.util.Collection action) { if (action == null) { this.action = null; return; } this.action = new java.util.ArrayList(action); } /** *

* The action that the principal can use on the resource. *

*

* For example, entityresolution:GetIdMappingJob, entityresolution:GetMatchingJob. *

*

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

* * @param action * The action that the principal can use on the resource.

*

* For example, entityresolution:GetIdMappingJob, entityresolution:GetMatchingJob. * @return Returns a reference to this object so that method calls can be chained together. */ public AddPolicyStatementRequest withAction(String... action) { if (this.action == null) { setAction(new java.util.ArrayList(action.length)); } for (String ele : action) { this.action.add(ele); } return this; } /** *

* The action that the principal can use on the resource. *

*

* For example, entityresolution:GetIdMappingJob, entityresolution:GetMatchingJob. *

* * @param action * The action that the principal can use on the resource.

*

* For example, entityresolution:GetIdMappingJob, entityresolution:GetMatchingJob. * @return Returns a reference to this object so that method calls can be chained together. */ public AddPolicyStatementRequest withAction(java.util.Collection action) { setAction(action); return this; } /** *

* The Amazon Resource Name (ARN) of the resource that will be accessed by the principal. *

* * @param arn * The Amazon Resource Name (ARN) of the resource that will be accessed by the principal. */ public void setArn(String arn) { this.arn = arn; } /** *

* The Amazon Resource Name (ARN) of the resource that will be accessed by the principal. *

* * @return The Amazon Resource Name (ARN) of the resource that will be accessed by the principal. */ public String getArn() { return this.arn; } /** *

* The Amazon Resource Name (ARN) of the resource that will be accessed by the principal. *

* * @param arn * The Amazon Resource Name (ARN) of the resource that will be accessed by the principal. * @return Returns a reference to this object so that method calls can be chained together. */ public AddPolicyStatementRequest withArn(String arn) { setArn(arn); return this; } /** *

* A set of condition keys that you can use in key policies. *

* * @param condition * A set of condition keys that you can use in key policies. */ public void setCondition(String condition) { this.condition = condition; } /** *

* A set of condition keys that you can use in key policies. *

* * @return A set of condition keys that you can use in key policies. */ public String getCondition() { return this.condition; } /** *

* A set of condition keys that you can use in key policies. *

* * @param condition * A set of condition keys that you can use in key policies. * @return Returns a reference to this object so that method calls can be chained together. */ public AddPolicyStatementRequest withCondition(String condition) { setCondition(condition); return this; } /** *

* Determines whether the permissions specified in the policy are to be allowed (Allow) or denied ( * Deny). *

* *

* If you set the value of the effect parameter to Deny for the * AddPolicyStatement operation, you must also set the value of the effect parameter in * the policy to Deny for the PutPolicy operation. *

*
* * @param effect * Determines whether the permissions specified in the policy are to be allowed (Allow) or * denied (Deny).

*

* If you set the value of the effect parameter to Deny for the * AddPolicyStatement operation, you must also set the value of the effect * parameter in the policy to Deny for the PutPolicy operation. *

* @see StatementEffect */ public void setEffect(String effect) { this.effect = effect; } /** *

* Determines whether the permissions specified in the policy are to be allowed (Allow) or denied ( * Deny). *

* *

* If you set the value of the effect parameter to Deny for the * AddPolicyStatement operation, you must also set the value of the effect parameter in * the policy to Deny for the PutPolicy operation. *

*
* * @return Determines whether the permissions specified in the policy are to be allowed (Allow) or * denied (Deny).

*

* If you set the value of the effect parameter to Deny for the * AddPolicyStatement operation, you must also set the value of the effect * parameter in the policy to Deny for the PutPolicy operation. *

* @see StatementEffect */ public String getEffect() { return this.effect; } /** *

* Determines whether the permissions specified in the policy are to be allowed (Allow) or denied ( * Deny). *

* *

* If you set the value of the effect parameter to Deny for the * AddPolicyStatement operation, you must also set the value of the effect parameter in * the policy to Deny for the PutPolicy operation. *

*
* * @param effect * Determines whether the permissions specified in the policy are to be allowed (Allow) or * denied (Deny).

*

* If you set the value of the effect parameter to Deny for the * AddPolicyStatement operation, you must also set the value of the effect * parameter in the policy to Deny for the PutPolicy operation. *

* @return Returns a reference to this object so that method calls can be chained together. * @see StatementEffect */ public AddPolicyStatementRequest withEffect(String effect) { setEffect(effect); return this; } /** *

* Determines whether the permissions specified in the policy are to be allowed (Allow) or denied ( * Deny). *

* *

* If you set the value of the effect parameter to Deny for the * AddPolicyStatement operation, you must also set the value of the effect parameter in * the policy to Deny for the PutPolicy operation. *

*
* * @param effect * Determines whether the permissions specified in the policy are to be allowed (Allow) or * denied (Deny).

*

* If you set the value of the effect parameter to Deny for the * AddPolicyStatement operation, you must also set the value of the effect * parameter in the policy to Deny for the PutPolicy operation. *

* @return Returns a reference to this object so that method calls can be chained together. * @see StatementEffect */ public AddPolicyStatementRequest withEffect(StatementEffect effect) { this.effect = effect.toString(); return this; } /** *

* The Amazon Web Services service or Amazon Web Services account that can access the resource defined as ARN. *

* * @return The Amazon Web Services service or Amazon Web Services account that can access the resource defined as * ARN. */ public java.util.List getPrincipal() { return principal; } /** *

* The Amazon Web Services service or Amazon Web Services account that can access the resource defined as ARN. *

* * @param principal * The Amazon Web Services service or Amazon Web Services account that can access the resource defined as * ARN. */ public void setPrincipal(java.util.Collection principal) { if (principal == null) { this.principal = null; return; } this.principal = new java.util.ArrayList(principal); } /** *

* The Amazon Web Services service or Amazon Web Services account that can access the resource defined as ARN. *

*

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

* * @param principal * The Amazon Web Services service or Amazon Web Services account that can access the resource defined as * ARN. * @return Returns a reference to this object so that method calls can be chained together. */ public AddPolicyStatementRequest withPrincipal(String... principal) { if (this.principal == null) { setPrincipal(new java.util.ArrayList(principal.length)); } for (String ele : principal) { this.principal.add(ele); } return this; } /** *

* The Amazon Web Services service or Amazon Web Services account that can access the resource defined as ARN. *

* * @param principal * The Amazon Web Services service or Amazon Web Services account that can access the resource defined as * ARN. * @return Returns a reference to this object so that method calls can be chained together. */ public AddPolicyStatementRequest withPrincipal(java.util.Collection principal) { setPrincipal(principal); return this; } /** *

* A statement identifier that differentiates the statement from others in the same policy. *

* * @param statementId * A statement identifier that differentiates the statement from others in the same policy. */ public void setStatementId(String statementId) { this.statementId = statementId; } /** *

* A statement identifier that differentiates the statement from others in the same policy. *

* * @return A statement identifier that differentiates the statement from others in the same policy. */ public String getStatementId() { return this.statementId; } /** *

* A statement identifier that differentiates the statement from others in the same policy. *

* * @param statementId * A statement identifier that differentiates the statement from others in the same policy. * @return Returns a reference to this object so that method calls can be chained together. */ public AddPolicyStatementRequest withStatementId(String statementId) { setStatementId(statementId); 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 (getAction() != null) sb.append("Action: ").append(getAction()).append(","); if (getArn() != null) sb.append("Arn: ").append(getArn()).append(","); if (getCondition() != null) sb.append("Condition: ").append(getCondition()).append(","); if (getEffect() != null) sb.append("Effect: ").append(getEffect()).append(","); if (getPrincipal() != null) sb.append("Principal: ").append(getPrincipal()).append(","); if (getStatementId() != null) sb.append("StatementId: ").append(getStatementId()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof AddPolicyStatementRequest == false) return false; AddPolicyStatementRequest other = (AddPolicyStatementRequest) obj; if (other.getAction() == null ^ this.getAction() == null) return false; if (other.getAction() != null && other.getAction().equals(this.getAction()) == false) return false; if (other.getArn() == null ^ this.getArn() == null) return false; if (other.getArn() != null && other.getArn().equals(this.getArn()) == false) return false; if (other.getCondition() == null ^ this.getCondition() == null) return false; if (other.getCondition() != null && other.getCondition().equals(this.getCondition()) == false) return false; if (other.getEffect() == null ^ this.getEffect() == null) return false; if (other.getEffect() != null && other.getEffect().equals(this.getEffect()) == false) return false; if (other.getPrincipal() == null ^ this.getPrincipal() == null) return false; if (other.getPrincipal() != null && other.getPrincipal().equals(this.getPrincipal()) == false) return false; if (other.getStatementId() == null ^ this.getStatementId() == null) return false; if (other.getStatementId() != null && other.getStatementId().equals(this.getStatementId()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getAction() == null) ? 0 : getAction().hashCode()); hashCode = prime * hashCode + ((getArn() == null) ? 0 : getArn().hashCode()); hashCode = prime * hashCode + ((getCondition() == null) ? 0 : getCondition().hashCode()); hashCode = prime * hashCode + ((getEffect() == null) ? 0 : getEffect().hashCode()); hashCode = prime * hashCode + ((getPrincipal() == null) ? 0 : getPrincipal().hashCode()); hashCode = prime * hashCode + ((getStatementId() == null) ? 0 : getStatementId().hashCode()); return hashCode; } @Override public AddPolicyStatementRequest clone() { return (AddPolicyStatementRequest) super.clone(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy