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

com.amazonaws.services.identitymanagement.model.SimulateCustomPolicyResult Maven / Gradle / Ivy

Go to download

The AWS SDK for Java with support for OSGi. The AWS SDK for Java provides Java APIs for building software on AWS' cost-effective, scalable, and reliable infrastructure products. The AWS Java SDK allows developers to code against APIs for all of Amazon's infrastructure web services (Amazon S3, Amazon EC2, Amazon SQS, Amazon Relational Database Service, Amazon AutoScaling, etc).

There is a newer version: 1.11.60
Show newest version
/*
 * Copyright 2011-2016 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.identitymanagement.model;

import java.io.Serializable;

/**
 * 

* Contains the response to a successful SimulatePrincipalPolicy or * SimulateCustomPolicy request. *

*/ public class SimulateCustomPolicyResult implements Serializable, Cloneable { /** *

* The results of the simulation. *

*/ private com.amazonaws.internal.SdkInternalList evaluationResults; /** *

* A flag that indicates whether there are more items to return. If your * results were truncated, you can make a subsequent pagination request * using the Marker request parameter to retrieve more items. * Note that IAM might return fewer than the MaxItems number of * results even when there are more results available. We recommend that you * check IsTruncated after every call to ensure that you * receive all of your results. *

*/ private Boolean isTruncated; /** *

* When IsTruncated is true, this element is * present and contains the value to use for the Marker * parameter in a subsequent pagination request. *

*/ private String marker; /** *

* The results of the simulation. *

* * @return The results of the simulation. */ public java.util.List getEvaluationResults() { if (evaluationResults == null) { evaluationResults = new com.amazonaws.internal.SdkInternalList(); } return evaluationResults; } /** *

* The results of the simulation. *

* * @param evaluationResults * The results of the simulation. */ public void setEvaluationResults( java.util.Collection evaluationResults) { if (evaluationResults == null) { this.evaluationResults = null; return; } this.evaluationResults = new com.amazonaws.internal.SdkInternalList( evaluationResults); } /** *

* The results of the simulation. *

*

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

* * @param evaluationResults * The results of the simulation. * @return Returns a reference to this object so that method calls can be * chained together. */ public SimulateCustomPolicyResult withEvaluationResults( EvaluationResult... evaluationResults) { if (this.evaluationResults == null) { setEvaluationResults(new com.amazonaws.internal.SdkInternalList( evaluationResults.length)); } for (EvaluationResult ele : evaluationResults) { this.evaluationResults.add(ele); } return this; } /** *

* The results of the simulation. *

* * @param evaluationResults * The results of the simulation. * @return Returns a reference to this object so that method calls can be * chained together. */ public SimulateCustomPolicyResult withEvaluationResults( java.util.Collection evaluationResults) { setEvaluationResults(evaluationResults); return this; } /** *

* A flag that indicates whether there are more items to return. If your * results were truncated, you can make a subsequent pagination request * using the Marker request parameter to retrieve more items. * Note that IAM might return fewer than the MaxItems number of * results even when there are more results available. We recommend that you * check IsTruncated after every call to ensure that you * receive all of your results. *

* * @param isTruncated * A flag that indicates whether there are more items to return. If * your results were truncated, you can make a subsequent pagination * request using the Marker request parameter to * retrieve more items. Note that IAM might return fewer than the * MaxItems number of results even when there are more * results available. We recommend that you check * IsTruncated after every call to ensure that you * receive all of your results. */ public void setIsTruncated(Boolean isTruncated) { this.isTruncated = isTruncated; } /** *

* A flag that indicates whether there are more items to return. If your * results were truncated, you can make a subsequent pagination request * using the Marker request parameter to retrieve more items. * Note that IAM might return fewer than the MaxItems number of * results even when there are more results available. We recommend that you * check IsTruncated after every call to ensure that you * receive all of your results. *

* * @return A flag that indicates whether there are more items to return. If * your results were truncated, you can make a subsequent pagination * request using the Marker request parameter to * retrieve more items. Note that IAM might return fewer than the * MaxItems number of results even when there are more * results available. We recommend that you check * IsTruncated after every call to ensure that you * receive all of your results. */ public Boolean getIsTruncated() { return this.isTruncated; } /** *

* A flag that indicates whether there are more items to return. If your * results were truncated, you can make a subsequent pagination request * using the Marker request parameter to retrieve more items. * Note that IAM might return fewer than the MaxItems number of * results even when there are more results available. We recommend that you * check IsTruncated after every call to ensure that you * receive all of your results. *

* * @param isTruncated * A flag that indicates whether there are more items to return. If * your results were truncated, you can make a subsequent pagination * request using the Marker request parameter to * retrieve more items. Note that IAM might return fewer than the * MaxItems number of results even when there are more * results available. We recommend that you check * IsTruncated after every call to ensure that you * receive all of your results. * @return Returns a reference to this object so that method calls can be * chained together. */ public SimulateCustomPolicyResult withIsTruncated(Boolean isTruncated) { setIsTruncated(isTruncated); return this; } /** *

* A flag that indicates whether there are more items to return. If your * results were truncated, you can make a subsequent pagination request * using the Marker request parameter to retrieve more items. * Note that IAM might return fewer than the MaxItems number of * results even when there are more results available. We recommend that you * check IsTruncated after every call to ensure that you * receive all of your results. *

* * @return A flag that indicates whether there are more items to return. If * your results were truncated, you can make a subsequent pagination * request using the Marker request parameter to * retrieve more items. Note that IAM might return fewer than the * MaxItems number of results even when there are more * results available. We recommend that you check * IsTruncated after every call to ensure that you * receive all of your results. */ public Boolean isTruncated() { return this.isTruncated; } /** *

* When IsTruncated is true, this element is * present and contains the value to use for the Marker * parameter in a subsequent pagination request. *

* * @param marker * When IsTruncated is true, this element * is present and contains the value to use for the * Marker parameter in a subsequent pagination request. */ public void setMarker(String marker) { this.marker = marker; } /** *

* When IsTruncated is true, this element is * present and contains the value to use for the Marker * parameter in a subsequent pagination request. *

* * @return When IsTruncated is true, this element * is present and contains the value to use for the * Marker parameter in a subsequent pagination request. */ public String getMarker() { return this.marker; } /** *

* When IsTruncated is true, this element is * present and contains the value to use for the Marker * parameter in a subsequent pagination request. *

* * @param marker * When IsTruncated is true, this element * is present and contains the value to use for the * Marker parameter in a subsequent pagination request. * @return Returns a reference to this object so that method calls can be * chained together. */ public SimulateCustomPolicyResult withMarker(String marker) { setMarker(marker); 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 (getEvaluationResults() != null) sb.append("EvaluationResults: " + getEvaluationResults() + ","); if (getIsTruncated() != null) sb.append("IsTruncated: " + getIsTruncated() + ","); if (getMarker() != null) sb.append("Marker: " + getMarker()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof SimulateCustomPolicyResult == false) return false; SimulateCustomPolicyResult other = (SimulateCustomPolicyResult) obj; if (other.getEvaluationResults() == null ^ this.getEvaluationResults() == null) return false; if (other.getEvaluationResults() != null && other.getEvaluationResults().equals( this.getEvaluationResults()) == false) return false; if (other.getIsTruncated() == null ^ this.getIsTruncated() == null) return false; if (other.getIsTruncated() != null && other.getIsTruncated().equals(this.getIsTruncated()) == false) return false; if (other.getMarker() == null ^ this.getMarker() == null) return false; if (other.getMarker() != null && other.getMarker().equals(this.getMarker()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getEvaluationResults() == null) ? 0 : getEvaluationResults().hashCode()); hashCode = prime * hashCode + ((getIsTruncated() == null) ? 0 : getIsTruncated().hashCode()); hashCode = prime * hashCode + ((getMarker() == null) ? 0 : getMarker().hashCode()); return hashCode; } @Override public SimulateCustomPolicyResult clone() { try { return (SimulateCustomPolicyResult) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException( "Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy