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

com.amazonaws.services.securityhub.model.GetFindingAggregatorResult 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 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.securityhub.model;

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

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

    /**
     * 

* The ARN of the finding aggregator. *

*/ private String findingAggregatorArn; /** *

* The aggregation Region. *

*/ private String findingAggregationRegion; /** *

* Indicates whether to link all Regions, all Regions except for a list of excluded Regions, or a list of included * Regions. *

*/ private String regionLinkingMode; /** *

* The list of excluded Regions or included Regions. *

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

* The ARN of the finding aggregator. *

* * @param findingAggregatorArn * The ARN of the finding aggregator. */ public void setFindingAggregatorArn(String findingAggregatorArn) { this.findingAggregatorArn = findingAggregatorArn; } /** *

* The ARN of the finding aggregator. *

* * @return The ARN of the finding aggregator. */ public String getFindingAggregatorArn() { return this.findingAggregatorArn; } /** *

* The ARN of the finding aggregator. *

* * @param findingAggregatorArn * The ARN of the finding aggregator. * @return Returns a reference to this object so that method calls can be chained together. */ public GetFindingAggregatorResult withFindingAggregatorArn(String findingAggregatorArn) { setFindingAggregatorArn(findingAggregatorArn); return this; } /** *

* The aggregation Region. *

* * @param findingAggregationRegion * The aggregation Region. */ public void setFindingAggregationRegion(String findingAggregationRegion) { this.findingAggregationRegion = findingAggregationRegion; } /** *

* The aggregation Region. *

* * @return The aggregation Region. */ public String getFindingAggregationRegion() { return this.findingAggregationRegion; } /** *

* The aggregation Region. *

* * @param findingAggregationRegion * The aggregation Region. * @return Returns a reference to this object so that method calls can be chained together. */ public GetFindingAggregatorResult withFindingAggregationRegion(String findingAggregationRegion) { setFindingAggregationRegion(findingAggregationRegion); return this; } /** *

* Indicates whether to link all Regions, all Regions except for a list of excluded Regions, or a list of included * Regions. *

* * @param regionLinkingMode * Indicates whether to link all Regions, all Regions except for a list of excluded Regions, or a list of * included Regions. */ public void setRegionLinkingMode(String regionLinkingMode) { this.regionLinkingMode = regionLinkingMode; } /** *

* Indicates whether to link all Regions, all Regions except for a list of excluded Regions, or a list of included * Regions. *

* * @return Indicates whether to link all Regions, all Regions except for a list of excluded Regions, or a list of * included Regions. */ public String getRegionLinkingMode() { return this.regionLinkingMode; } /** *

* Indicates whether to link all Regions, all Regions except for a list of excluded Regions, or a list of included * Regions. *

* * @param regionLinkingMode * Indicates whether to link all Regions, all Regions except for a list of excluded Regions, or a list of * included Regions. * @return Returns a reference to this object so that method calls can be chained together. */ public GetFindingAggregatorResult withRegionLinkingMode(String regionLinkingMode) { setRegionLinkingMode(regionLinkingMode); return this; } /** *

* The list of excluded Regions or included Regions. *

* * @return The list of excluded Regions or included Regions. */ public java.util.List getRegions() { return regions; } /** *

* The list of excluded Regions or included Regions. *

* * @param regions * The list of excluded Regions or included Regions. */ public void setRegions(java.util.Collection regions) { if (regions == null) { this.regions = null; return; } this.regions = new java.util.ArrayList(regions); } /** *

* The list of excluded Regions or included Regions. *

*

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

* * @param regions * The list of excluded Regions or included Regions. * @return Returns a reference to this object so that method calls can be chained together. */ public GetFindingAggregatorResult withRegions(String... regions) { if (this.regions == null) { setRegions(new java.util.ArrayList(regions.length)); } for (String ele : regions) { this.regions.add(ele); } return this; } /** *

* The list of excluded Regions or included Regions. *

* * @param regions * The list of excluded Regions or included Regions. * @return Returns a reference to this object so that method calls can be chained together. */ public GetFindingAggregatorResult withRegions(java.util.Collection regions) { setRegions(regions); 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 (getFindingAggregatorArn() != null) sb.append("FindingAggregatorArn: ").append(getFindingAggregatorArn()).append(","); if (getFindingAggregationRegion() != null) sb.append("FindingAggregationRegion: ").append(getFindingAggregationRegion()).append(","); if (getRegionLinkingMode() != null) sb.append("RegionLinkingMode: ").append(getRegionLinkingMode()).append(","); if (getRegions() != null) sb.append("Regions: ").append(getRegions()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof GetFindingAggregatorResult == false) return false; GetFindingAggregatorResult other = (GetFindingAggregatorResult) obj; if (other.getFindingAggregatorArn() == null ^ this.getFindingAggregatorArn() == null) return false; if (other.getFindingAggregatorArn() != null && other.getFindingAggregatorArn().equals(this.getFindingAggregatorArn()) == false) return false; if (other.getFindingAggregationRegion() == null ^ this.getFindingAggregationRegion() == null) return false; if (other.getFindingAggregationRegion() != null && other.getFindingAggregationRegion().equals(this.getFindingAggregationRegion()) == false) return false; if (other.getRegionLinkingMode() == null ^ this.getRegionLinkingMode() == null) return false; if (other.getRegionLinkingMode() != null && other.getRegionLinkingMode().equals(this.getRegionLinkingMode()) == false) return false; if (other.getRegions() == null ^ this.getRegions() == null) return false; if (other.getRegions() != null && other.getRegions().equals(this.getRegions()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getFindingAggregatorArn() == null) ? 0 : getFindingAggregatorArn().hashCode()); hashCode = prime * hashCode + ((getFindingAggregationRegion() == null) ? 0 : getFindingAggregationRegion().hashCode()); hashCode = prime * hashCode + ((getRegionLinkingMode() == null) ? 0 : getRegionLinkingMode().hashCode()); hashCode = prime * hashCode + ((getRegions() == null) ? 0 : getRegions().hashCode()); return hashCode; } @Override public GetFindingAggregatorResult clone() { try { return (GetFindingAggregatorResult) 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