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

com.amazonaws.services.securityhub.model.InsightResults Maven / Gradle / Ivy

Go to download

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

There is a newer version: 1.12.780
Show 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.securityhub.model;

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

/**
 * 

* The insight results returned by the GetInsightResults operation. *

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

* The ARN of the insight whose results are returned by the GetInsightResults operation. *

*/ private String insightArn; /** *

* The attribute that the findings are grouped by for the insight whose results are returned by the * GetInsightResults operation. *

*/ private String groupByAttribute; /** *

* The list of insight result values returned by the GetInsightResults operation. *

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

* The ARN of the insight whose results are returned by the GetInsightResults operation. *

* * @param insightArn * The ARN of the insight whose results are returned by the GetInsightResults operation. */ public void setInsightArn(String insightArn) { this.insightArn = insightArn; } /** *

* The ARN of the insight whose results are returned by the GetInsightResults operation. *

* * @return The ARN of the insight whose results are returned by the GetInsightResults operation. */ public String getInsightArn() { return this.insightArn; } /** *

* The ARN of the insight whose results are returned by the GetInsightResults operation. *

* * @param insightArn * The ARN of the insight whose results are returned by the GetInsightResults operation. * @return Returns a reference to this object so that method calls can be chained together. */ public InsightResults withInsightArn(String insightArn) { setInsightArn(insightArn); return this; } /** *

* The attribute that the findings are grouped by for the insight whose results are returned by the * GetInsightResults operation. *

* * @param groupByAttribute * The attribute that the findings are grouped by for the insight whose results are returned by the * GetInsightResults operation. */ public void setGroupByAttribute(String groupByAttribute) { this.groupByAttribute = groupByAttribute; } /** *

* The attribute that the findings are grouped by for the insight whose results are returned by the * GetInsightResults operation. *

* * @return The attribute that the findings are grouped by for the insight whose results are returned by the * GetInsightResults operation. */ public String getGroupByAttribute() { return this.groupByAttribute; } /** *

* The attribute that the findings are grouped by for the insight whose results are returned by the * GetInsightResults operation. *

* * @param groupByAttribute * The attribute that the findings are grouped by for the insight whose results are returned by the * GetInsightResults operation. * @return Returns a reference to this object so that method calls can be chained together. */ public InsightResults withGroupByAttribute(String groupByAttribute) { setGroupByAttribute(groupByAttribute); return this; } /** *

* The list of insight result values returned by the GetInsightResults operation. *

* * @return The list of insight result values returned by the GetInsightResults operation. */ public java.util.List getResultValues() { return resultValues; } /** *

* The list of insight result values returned by the GetInsightResults operation. *

* * @param resultValues * The list of insight result values returned by the GetInsightResults operation. */ public void setResultValues(java.util.Collection resultValues) { if (resultValues == null) { this.resultValues = null; return; } this.resultValues = new java.util.ArrayList(resultValues); } /** *

* The list of insight result values returned by the GetInsightResults operation. *

*

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

* * @param resultValues * The list of insight result values returned by the GetInsightResults operation. * @return Returns a reference to this object so that method calls can be chained together. */ public InsightResults withResultValues(InsightResultValue... resultValues) { if (this.resultValues == null) { setResultValues(new java.util.ArrayList(resultValues.length)); } for (InsightResultValue ele : resultValues) { this.resultValues.add(ele); } return this; } /** *

* The list of insight result values returned by the GetInsightResults operation. *

* * @param resultValues * The list of insight result values returned by the GetInsightResults operation. * @return Returns a reference to this object so that method calls can be chained together. */ public InsightResults withResultValues(java.util.Collection resultValues) { setResultValues(resultValues); 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 (getInsightArn() != null) sb.append("InsightArn: ").append(getInsightArn()).append(","); if (getGroupByAttribute() != null) sb.append("GroupByAttribute: ").append(getGroupByAttribute()).append(","); if (getResultValues() != null) sb.append("ResultValues: ").append(getResultValues()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof InsightResults == false) return false; InsightResults other = (InsightResults) obj; if (other.getInsightArn() == null ^ this.getInsightArn() == null) return false; if (other.getInsightArn() != null && other.getInsightArn().equals(this.getInsightArn()) == false) return false; if (other.getGroupByAttribute() == null ^ this.getGroupByAttribute() == null) return false; if (other.getGroupByAttribute() != null && other.getGroupByAttribute().equals(this.getGroupByAttribute()) == false) return false; if (other.getResultValues() == null ^ this.getResultValues() == null) return false; if (other.getResultValues() != null && other.getResultValues().equals(this.getResultValues()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getInsightArn() == null) ? 0 : getInsightArn().hashCode()); hashCode = prime * hashCode + ((getGroupByAttribute() == null) ? 0 : getGroupByAttribute().hashCode()); hashCode = prime * hashCode + ((getResultValues() == null) ? 0 : getResultValues().hashCode()); return hashCode; } @Override public InsightResults clone() { try { return (InsightResults) 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.securityhub.model.transform.InsightResultsMarshaller.getInstance().marshall(this, protocolMarshaller); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy