/* * Copyright 2018-2023 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; /** * * @see AWS * API Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class GetGeneratedPolicyResult extends com.amazonaws.AmazonWebServiceResult implements Serializable, Cloneable { /** *

* A GeneratedPolicyDetails object that contains details about the generated policy. *

*/ private JobDetails jobDetails; /** *

* A GeneratedPolicyResult object that contains the generated policies and associated details. *

*/ private GeneratedPolicyResult generatedPolicyResult; /** *

* A GeneratedPolicyDetails object that contains details about the generated policy. *

* * @param jobDetails * A GeneratedPolicyDetails object that contains details about the generated policy. */ public void setJobDetails(JobDetails jobDetails) { this.jobDetails = jobDetails; } /** *

* A GeneratedPolicyDetails object that contains details about the generated policy. *

* * @return A GeneratedPolicyDetails object that contains details about the generated policy. */ public JobDetails getJobDetails() { return this.jobDetails; } /** *

* A GeneratedPolicyDetails object that contains details about the generated policy. *

* * @param jobDetails * A GeneratedPolicyDetails object that contains details about the generated policy. * @return Returns a reference to this object so that method calls can be chained together. */ public GetGeneratedPolicyResult withJobDetails(JobDetails jobDetails) { setJobDetails(jobDetails); return this; } /** *

* A GeneratedPolicyResult object that contains the generated policies and associated details. *

* * @param generatedPolicyResult * A GeneratedPolicyResult object that contains the generated policies and associated details. */ public void setGeneratedPolicyResult(GeneratedPolicyResult generatedPolicyResult) { this.generatedPolicyResult = generatedPolicyResult; } /** *

* A GeneratedPolicyResult object that contains the generated policies and associated details. *

* * @return A GeneratedPolicyResult object that contains the generated policies and associated details. */ public GeneratedPolicyResult getGeneratedPolicyResult() { return this.generatedPolicyResult; } /** *

* A GeneratedPolicyResult object that contains the generated policies and associated details. *

* * @param generatedPolicyResult * A GeneratedPolicyResult object that contains the generated policies and associated details. * @return Returns a reference to this object so that method calls can be chained together. */ public GetGeneratedPolicyResult withGeneratedPolicyResult(GeneratedPolicyResult generatedPolicyResult) { setGeneratedPolicyResult(generatedPolicyResult); 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 (getJobDetails() != null) sb.append("JobDetails: ").append(getJobDetails()).append(","); if (getGeneratedPolicyResult() != null) sb.append("GeneratedPolicyResult: ").append(getGeneratedPolicyResult()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof GetGeneratedPolicyResult == false) return false; GetGeneratedPolicyResult other = (GetGeneratedPolicyResult) obj; if (other.getJobDetails() == null ^ this.getJobDetails() == null) return false; if (other.getJobDetails() != null && other.getJobDetails().equals(this.getJobDetails()) == false) return false; if (other.getGeneratedPolicyResult() == null ^ this.getGeneratedPolicyResult() == null) return false; if (other.getGeneratedPolicyResult() != null && other.getGeneratedPolicyResult().equals(this.getGeneratedPolicyResult()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getJobDetails() == null) ? 0 : getJobDetails().hashCode()); hashCode = prime * hashCode + ((getGeneratedPolicyResult() == null) ? 0 : getGeneratedPolicyResult().hashCode()); return hashCode; } @Override public GetGeneratedPolicyResult clone() { try { return (GetGeneratedPolicyResult) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } }