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

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

/*
 * Copyright 2014-2019 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 DescribeEventDetailsRequest 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; /** *

* The locale (language) to return information in. English (en) is the default and the only supported value at this * time. *

*/ private String locale; /** *

* 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 DescribeEventDetailsRequest 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 DescribeEventDetailsRequest withEventArns(java.util.Collection eventArns) { setEventArns(eventArns); return this; } /** *

* The locale (language) to return information in. English (en) is the default and the only supported value at this * time. *

* * @param locale * The locale (language) to return information in. English (en) is the default and the only supported value * at this time. */ public void setLocale(String locale) { this.locale = locale; } /** *

* The locale (language) to return information in. English (en) is the default and the only supported value at this * time. *

* * @return The locale (language) to return information in. English (en) is the default and the only supported value * at this time. */ public String getLocale() { return this.locale; } /** *

* The locale (language) to return information in. English (en) is the default and the only supported value at this * time. *

* * @param locale * The locale (language) to return information in. English (en) is the default and the only supported value * at this time. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeEventDetailsRequest withLocale(String locale) { setLocale(locale); 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 (getLocale() != null) sb.append("Locale: ").append(getLocale()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof DescribeEventDetailsRequest == false) return false; DescribeEventDetailsRequest other = (DescribeEventDetailsRequest) obj; if (other.getEventArns() == null ^ this.getEventArns() == null) return false; if (other.getEventArns() != null && other.getEventArns().equals(this.getEventArns()) == false) return false; if (other.getLocale() == null ^ this.getLocale() == null) return false; if (other.getLocale() != null && other.getLocale().equals(this.getLocale()) == 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 + ((getLocale() == null) ? 0 : getLocale().hashCode()); return hashCode; } @Override public DescribeEventDetailsRequest clone() { return (DescribeEventDetailsRequest) super.clone(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy