com.amazonaws.services.health.model.DescribeEventDetailsForOrganizationRequest Maven / Gradle / Ivy
Show all versions of aws-java-sdk-health Show documentation
/*
* Copyright 2017-2022 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 DescribeEventDetailsForOrganizationRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable {
/**
*
* A set of JSON elements that includes the awsAccountId
and the eventArn
.
*
*/
private java.util.List organizationEventDetailFilters;
/**
*
* The locale (language) to return information in. English (en) is the default and the only supported value at this
* time.
*
*/
private String locale;
/**
*
* A set of JSON elements that includes the awsAccountId
and the eventArn
.
*
*
* @return A set of JSON elements that includes the awsAccountId
and the eventArn
.
*/
public java.util.List getOrganizationEventDetailFilters() {
return organizationEventDetailFilters;
}
/**
*
* A set of JSON elements that includes the awsAccountId
and the eventArn
.
*
*
* @param organizationEventDetailFilters
* A set of JSON elements that includes the awsAccountId
and the eventArn
.
*/
public void setOrganizationEventDetailFilters(java.util.Collection organizationEventDetailFilters) {
if (organizationEventDetailFilters == null) {
this.organizationEventDetailFilters = null;
return;
}
this.organizationEventDetailFilters = new java.util.ArrayList(organizationEventDetailFilters);
}
/**
*
* A set of JSON elements that includes the awsAccountId
and the eventArn
.
*
*
* NOTE: This method appends the values to the existing list (if any). Use
* {@link #setOrganizationEventDetailFilters(java.util.Collection)} or
* {@link #withOrganizationEventDetailFilters(java.util.Collection)} if you want to override the existing values.
*
*
* @param organizationEventDetailFilters
* A set of JSON elements that includes the awsAccountId
and the eventArn
.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DescribeEventDetailsForOrganizationRequest withOrganizationEventDetailFilters(EventAccountFilter... organizationEventDetailFilters) {
if (this.organizationEventDetailFilters == null) {
setOrganizationEventDetailFilters(new java.util.ArrayList(organizationEventDetailFilters.length));
}
for (EventAccountFilter ele : organizationEventDetailFilters) {
this.organizationEventDetailFilters.add(ele);
}
return this;
}
/**
*
* A set of JSON elements that includes the awsAccountId
and the eventArn
.
*
*
* @param organizationEventDetailFilters
* A set of JSON elements that includes the awsAccountId
and the eventArn
.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DescribeEventDetailsForOrganizationRequest withOrganizationEventDetailFilters(java.util.Collection organizationEventDetailFilters) {
setOrganizationEventDetailFilters(organizationEventDetailFilters);
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 DescribeEventDetailsForOrganizationRequest 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 (getOrganizationEventDetailFilters() != null)
sb.append("OrganizationEventDetailFilters: ").append(getOrganizationEventDetailFilters()).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 DescribeEventDetailsForOrganizationRequest == false)
return false;
DescribeEventDetailsForOrganizationRequest other = (DescribeEventDetailsForOrganizationRequest) obj;
if (other.getOrganizationEventDetailFilters() == null ^ this.getOrganizationEventDetailFilters() == null)
return false;
if (other.getOrganizationEventDetailFilters() != null
&& other.getOrganizationEventDetailFilters().equals(this.getOrganizationEventDetailFilters()) == 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 + ((getOrganizationEventDetailFilters() == null) ? 0 : getOrganizationEventDetailFilters().hashCode());
hashCode = prime * hashCode + ((getLocale() == null) ? 0 : getLocale().hashCode());
return hashCode;
}
@Override
public DescribeEventDetailsForOrganizationRequest clone() {
return (DescribeEventDetailsForOrganizationRequest) super.clone();
}
}