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

com.amazonaws.services.health.model.DescribeEntityAggregatesForOrganizationRequest Maven / Gradle / Ivy

Go to download

The AWS Java SDK for AWS Health APIs and Notifications module holds the client classes that are used for communicating with AWS Health APIs and Notifications 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.health.model;

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

import com.amazonaws.AmazonWebServiceRequest;

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

    /**
     * 

* A list of event ARNs (unique identifiers). For example: * "arn:aws:health:us-east-1::event/EC2/EC2_INSTANCE_RETIREMENT_SCHEDULED/EC2_INSTANCE_RETIREMENT_SCHEDULED_ABC123-CDE456", "arn:aws:health:us-west-1::event/EBS/AWS_EBS_LOST_VOLUME/AWS_EBS_LOST_VOLUME_CHI789_JKL101" *

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

* A list of 12-digit Amazon Web Services account numbers that contains the affected entities. *

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

* A list of event ARNs (unique identifiers). For example: * "arn:aws:health:us-east-1::event/EC2/EC2_INSTANCE_RETIREMENT_SCHEDULED/EC2_INSTANCE_RETIREMENT_SCHEDULED_ABC123-CDE456", "arn:aws:health:us-west-1::event/EBS/AWS_EBS_LOST_VOLUME/AWS_EBS_LOST_VOLUME_CHI789_JKL101" *

* * @return A list of event ARNs (unique identifiers). For example: * "arn:aws:health:us-east-1::event/EC2/EC2_INSTANCE_RETIREMENT_SCHEDULED/EC2_INSTANCE_RETIREMENT_SCHEDULED_ABC123-CDE456", "arn:aws:health:us-west-1::event/EBS/AWS_EBS_LOST_VOLUME/AWS_EBS_LOST_VOLUME_CHI789_JKL101" */ public java.util.List getEventArns() { return eventArns; } /** *

* A list of event ARNs (unique identifiers). For example: * "arn:aws:health:us-east-1::event/EC2/EC2_INSTANCE_RETIREMENT_SCHEDULED/EC2_INSTANCE_RETIREMENT_SCHEDULED_ABC123-CDE456", "arn:aws:health:us-west-1::event/EBS/AWS_EBS_LOST_VOLUME/AWS_EBS_LOST_VOLUME_CHI789_JKL101" *

* * @param eventArns * A list of event ARNs (unique identifiers). For example: * "arn:aws:health:us-east-1::event/EC2/EC2_INSTANCE_RETIREMENT_SCHEDULED/EC2_INSTANCE_RETIREMENT_SCHEDULED_ABC123-CDE456", "arn:aws:health:us-west-1::event/EBS/AWS_EBS_LOST_VOLUME/AWS_EBS_LOST_VOLUME_CHI789_JKL101" */ public void setEventArns(java.util.Collection eventArns) { if (eventArns == null) { this.eventArns = null; return; } this.eventArns = new java.util.ArrayList(eventArns); } /** *

* A list of event ARNs (unique identifiers). For example: * "arn:aws:health:us-east-1::event/EC2/EC2_INSTANCE_RETIREMENT_SCHEDULED/EC2_INSTANCE_RETIREMENT_SCHEDULED_ABC123-CDE456", "arn:aws:health:us-west-1::event/EBS/AWS_EBS_LOST_VOLUME/AWS_EBS_LOST_VOLUME_CHI789_JKL101" *

*

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

* * @param eventArns * A list of event ARNs (unique identifiers). For example: * "arn:aws:health:us-east-1::event/EC2/EC2_INSTANCE_RETIREMENT_SCHEDULED/EC2_INSTANCE_RETIREMENT_SCHEDULED_ABC123-CDE456", "arn:aws:health:us-west-1::event/EBS/AWS_EBS_LOST_VOLUME/AWS_EBS_LOST_VOLUME_CHI789_JKL101" * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeEntityAggregatesForOrganizationRequest withEventArns(String... eventArns) { if (this.eventArns == null) { setEventArns(new java.util.ArrayList(eventArns.length)); } for (String ele : eventArns) { this.eventArns.add(ele); } return this; } /** *

* A list of event ARNs (unique identifiers). For example: * "arn:aws:health:us-east-1::event/EC2/EC2_INSTANCE_RETIREMENT_SCHEDULED/EC2_INSTANCE_RETIREMENT_SCHEDULED_ABC123-CDE456", "arn:aws:health:us-west-1::event/EBS/AWS_EBS_LOST_VOLUME/AWS_EBS_LOST_VOLUME_CHI789_JKL101" *

* * @param eventArns * A list of event ARNs (unique identifiers). For example: * "arn:aws:health:us-east-1::event/EC2/EC2_INSTANCE_RETIREMENT_SCHEDULED/EC2_INSTANCE_RETIREMENT_SCHEDULED_ABC123-CDE456", "arn:aws:health:us-west-1::event/EBS/AWS_EBS_LOST_VOLUME/AWS_EBS_LOST_VOLUME_CHI789_JKL101" * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeEntityAggregatesForOrganizationRequest withEventArns(java.util.Collection eventArns) { setEventArns(eventArns); return this; } /** *

* A list of 12-digit Amazon Web Services account numbers that contains the affected entities. *

* * @return A list of 12-digit Amazon Web Services account numbers that contains the affected entities. */ public java.util.List getAwsAccountIds() { return awsAccountIds; } /** *

* A list of 12-digit Amazon Web Services account numbers that contains the affected entities. *

* * @param awsAccountIds * A list of 12-digit Amazon Web Services account numbers that contains the affected entities. */ public void setAwsAccountIds(java.util.Collection awsAccountIds) { if (awsAccountIds == null) { this.awsAccountIds = null; return; } this.awsAccountIds = new java.util.ArrayList(awsAccountIds); } /** *

* A list of 12-digit Amazon Web Services account numbers that contains the affected entities. *

*

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

* * @param awsAccountIds * A list of 12-digit Amazon Web Services account numbers that contains the affected entities. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeEntityAggregatesForOrganizationRequest withAwsAccountIds(String... awsAccountIds) { if (this.awsAccountIds == null) { setAwsAccountIds(new java.util.ArrayList(awsAccountIds.length)); } for (String ele : awsAccountIds) { this.awsAccountIds.add(ele); } return this; } /** *

* A list of 12-digit Amazon Web Services account numbers that contains the affected entities. *

* * @param awsAccountIds * A list of 12-digit Amazon Web Services account numbers that contains the affected entities. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeEntityAggregatesForOrganizationRequest withAwsAccountIds(java.util.Collection awsAccountIds) { setAwsAccountIds(awsAccountIds); 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 (getEventArns() != null) sb.append("EventArns: ").append(getEventArns()).append(","); if (getAwsAccountIds() != null) sb.append("AwsAccountIds: ").append(getAwsAccountIds()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof DescribeEntityAggregatesForOrganizationRequest == false) return false; DescribeEntityAggregatesForOrganizationRequest other = (DescribeEntityAggregatesForOrganizationRequest) obj; if (other.getEventArns() == null ^ this.getEventArns() == null) return false; if (other.getEventArns() != null && other.getEventArns().equals(this.getEventArns()) == false) return false; if (other.getAwsAccountIds() == null ^ this.getAwsAccountIds() == null) return false; if (other.getAwsAccountIds() != null && other.getAwsAccountIds().equals(this.getAwsAccountIds()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getEventArns() == null) ? 0 : getEventArns().hashCode()); hashCode = prime * hashCode + ((getAwsAccountIds() == null) ? 0 : getAwsAccountIds().hashCode()); return hashCode; } @Override public DescribeEntityAggregatesForOrganizationRequest clone() { return (DescribeEntityAggregatesForOrganizationRequest) super.clone(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy