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

com.amazonaws.services.inspector2.model.TitleAggregationResponse Maven / Gradle / Ivy

Go to download

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

There is a newer version: 1.12.772
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.inspector2.model;

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

/**
 * 

* A response that contains details on the results of a finding aggregation by title. *

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

* The ID of the Amazon Web Services account associated with the findings. *

*/ private String accountId; /** *

* An object that represent the count of matched findings per severity. *

*/ private SeverityCounts severityCounts; /** *

* The title that the findings were aggregated on. *

*/ private String title; /** *

* The vulnerability ID of the finding. *

*/ private String vulnerabilityId; /** *

* The ID of the Amazon Web Services account associated with the findings. *

* * @param accountId * The ID of the Amazon Web Services account associated with the findings. */ public void setAccountId(String accountId) { this.accountId = accountId; } /** *

* The ID of the Amazon Web Services account associated with the findings. *

* * @return The ID of the Amazon Web Services account associated with the findings. */ public String getAccountId() { return this.accountId; } /** *

* The ID of the Amazon Web Services account associated with the findings. *

* * @param accountId * The ID of the Amazon Web Services account associated with the findings. * @return Returns a reference to this object so that method calls can be chained together. */ public TitleAggregationResponse withAccountId(String accountId) { setAccountId(accountId); return this; } /** *

* An object that represent the count of matched findings per severity. *

* * @param severityCounts * An object that represent the count of matched findings per severity. */ public void setSeverityCounts(SeverityCounts severityCounts) { this.severityCounts = severityCounts; } /** *

* An object that represent the count of matched findings per severity. *

* * @return An object that represent the count of matched findings per severity. */ public SeverityCounts getSeverityCounts() { return this.severityCounts; } /** *

* An object that represent the count of matched findings per severity. *

* * @param severityCounts * An object that represent the count of matched findings per severity. * @return Returns a reference to this object so that method calls can be chained together. */ public TitleAggregationResponse withSeverityCounts(SeverityCounts severityCounts) { setSeverityCounts(severityCounts); return this; } /** *

* The title that the findings were aggregated on. *

* * @param title * The title that the findings were aggregated on. */ public void setTitle(String title) { this.title = title; } /** *

* The title that the findings were aggregated on. *

* * @return The title that the findings were aggregated on. */ public String getTitle() { return this.title; } /** *

* The title that the findings were aggregated on. *

* * @param title * The title that the findings were aggregated on. * @return Returns a reference to this object so that method calls can be chained together. */ public TitleAggregationResponse withTitle(String title) { setTitle(title); return this; } /** *

* The vulnerability ID of the finding. *

* * @param vulnerabilityId * The vulnerability ID of the finding. */ public void setVulnerabilityId(String vulnerabilityId) { this.vulnerabilityId = vulnerabilityId; } /** *

* The vulnerability ID of the finding. *

* * @return The vulnerability ID of the finding. */ public String getVulnerabilityId() { return this.vulnerabilityId; } /** *

* The vulnerability ID of the finding. *

* * @param vulnerabilityId * The vulnerability ID of the finding. * @return Returns a reference to this object so that method calls can be chained together. */ public TitleAggregationResponse withVulnerabilityId(String vulnerabilityId) { setVulnerabilityId(vulnerabilityId); 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 (getAccountId() != null) sb.append("AccountId: ").append(getAccountId()).append(","); if (getSeverityCounts() != null) sb.append("SeverityCounts: ").append(getSeverityCounts()).append(","); if (getTitle() != null) sb.append("Title: ").append(getTitle()).append(","); if (getVulnerabilityId() != null) sb.append("VulnerabilityId: ").append(getVulnerabilityId()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof TitleAggregationResponse == false) return false; TitleAggregationResponse other = (TitleAggregationResponse) obj; if (other.getAccountId() == null ^ this.getAccountId() == null) return false; if (other.getAccountId() != null && other.getAccountId().equals(this.getAccountId()) == false) return false; if (other.getSeverityCounts() == null ^ this.getSeverityCounts() == null) return false; if (other.getSeverityCounts() != null && other.getSeverityCounts().equals(this.getSeverityCounts()) == false) return false; if (other.getTitle() == null ^ this.getTitle() == null) return false; if (other.getTitle() != null && other.getTitle().equals(this.getTitle()) == false) return false; if (other.getVulnerabilityId() == null ^ this.getVulnerabilityId() == null) return false; if (other.getVulnerabilityId() != null && other.getVulnerabilityId().equals(this.getVulnerabilityId()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getAccountId() == null) ? 0 : getAccountId().hashCode()); hashCode = prime * hashCode + ((getSeverityCounts() == null) ? 0 : getSeverityCounts().hashCode()); hashCode = prime * hashCode + ((getTitle() == null) ? 0 : getTitle().hashCode()); hashCode = prime * hashCode + ((getVulnerabilityId() == null) ? 0 : getVulnerabilityId().hashCode()); return hashCode; } @Override public TitleAggregationResponse clone() { try { return (TitleAggregationResponse) 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.inspector2.model.transform.TitleAggregationResponseMarshaller.getInstance().marshall(this, protocolMarshaller); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy