com.amazonaws.services.cloudwatchrum.model.GetAppMonitorDataRequest Maven / Gradle / Ivy
Show all versions of aws-java-sdk-cloudwatchrum Show documentation
/*
* 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.cloudwatchrum.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 GetAppMonitorDataRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable {
/**
*
* An array of structures that you can use to filter the results to those that match one or more sets of key-value
* pairs that you specify.
*
*/
private java.util.List filters;
/**
*
* The maximum number of results to return in one operation.
*
*/
private Integer maxResults;
/**
*
* The name of the app monitor that collected the data that you want to retrieve.
*
*/
private String name;
/**
*
* Use the token returned by the previous operation to request the next page of results.
*
*/
private String nextToken;
/**
*
* A structure that defines the time range that you want to retrieve results from.
*
*/
private TimeRange timeRange;
/**
*
* An array of structures that you can use to filter the results to those that match one or more sets of key-value
* pairs that you specify.
*
*
* @return An array of structures that you can use to filter the results to those that match one or more sets of
* key-value pairs that you specify.
*/
public java.util.List getFilters() {
return filters;
}
/**
*
* An array of structures that you can use to filter the results to those that match one or more sets of key-value
* pairs that you specify.
*
*
* @param filters
* An array of structures that you can use to filter the results to those that match one or more sets of
* key-value pairs that you specify.
*/
public void setFilters(java.util.Collection filters) {
if (filters == null) {
this.filters = null;
return;
}
this.filters = new java.util.ArrayList(filters);
}
/**
*
* An array of structures that you can use to filter the results to those that match one or more sets of key-value
* pairs that you specify.
*
*
* NOTE: This method appends the values to the existing list (if any). Use
* {@link #setFilters(java.util.Collection)} or {@link #withFilters(java.util.Collection)} if you want to override
* the existing values.
*
*
* @param filters
* An array of structures that you can use to filter the results to those that match one or more sets of
* key-value pairs that you specify.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public GetAppMonitorDataRequest withFilters(QueryFilter... filters) {
if (this.filters == null) {
setFilters(new java.util.ArrayList(filters.length));
}
for (QueryFilter ele : filters) {
this.filters.add(ele);
}
return this;
}
/**
*
* An array of structures that you can use to filter the results to those that match one or more sets of key-value
* pairs that you specify.
*
*
* @param filters
* An array of structures that you can use to filter the results to those that match one or more sets of
* key-value pairs that you specify.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public GetAppMonitorDataRequest withFilters(java.util.Collection filters) {
setFilters(filters);
return this;
}
/**
*
* The maximum number of results to return in one operation.
*
*
* @param maxResults
* The maximum number of results to return in one operation.
*/
public void setMaxResults(Integer maxResults) {
this.maxResults = maxResults;
}
/**
*
* The maximum number of results to return in one operation.
*
*
* @return The maximum number of results to return in one operation.
*/
public Integer getMaxResults() {
return this.maxResults;
}
/**
*
* The maximum number of results to return in one operation.
*
*
* @param maxResults
* The maximum number of results to return in one operation.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public GetAppMonitorDataRequest withMaxResults(Integer maxResults) {
setMaxResults(maxResults);
return this;
}
/**
*
* The name of the app monitor that collected the data that you want to retrieve.
*
*
* @param name
* The name of the app monitor that collected the data that you want to retrieve.
*/
public void setName(String name) {
this.name = name;
}
/**
*
* The name of the app monitor that collected the data that you want to retrieve.
*
*
* @return The name of the app monitor that collected the data that you want to retrieve.
*/
public String getName() {
return this.name;
}
/**
*
* The name of the app monitor that collected the data that you want to retrieve.
*
*
* @param name
* The name of the app monitor that collected the data that you want to retrieve.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public GetAppMonitorDataRequest withName(String name) {
setName(name);
return this;
}
/**
*
* Use the token returned by the previous operation to request the next page of results.
*
*
* @param nextToken
* Use the token returned by the previous operation to request the next page of results.
*/
public void setNextToken(String nextToken) {
this.nextToken = nextToken;
}
/**
*
* Use the token returned by the previous operation to request the next page of results.
*
*
* @return Use the token returned by the previous operation to request the next page of results.
*/
public String getNextToken() {
return this.nextToken;
}
/**
*
* Use the token returned by the previous operation to request the next page of results.
*
*
* @param nextToken
* Use the token returned by the previous operation to request the next page of results.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public GetAppMonitorDataRequest withNextToken(String nextToken) {
setNextToken(nextToken);
return this;
}
/**
*
* A structure that defines the time range that you want to retrieve results from.
*
*
* @param timeRange
* A structure that defines the time range that you want to retrieve results from.
*/
public void setTimeRange(TimeRange timeRange) {
this.timeRange = timeRange;
}
/**
*
* A structure that defines the time range that you want to retrieve results from.
*
*
* @return A structure that defines the time range that you want to retrieve results from.
*/
public TimeRange getTimeRange() {
return this.timeRange;
}
/**
*
* A structure that defines the time range that you want to retrieve results from.
*
*
* @param timeRange
* A structure that defines the time range that you want to retrieve results from.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public GetAppMonitorDataRequest withTimeRange(TimeRange timeRange) {
setTimeRange(timeRange);
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 (getFilters() != null)
sb.append("Filters: ").append(getFilters()).append(",");
if (getMaxResults() != null)
sb.append("MaxResults: ").append(getMaxResults()).append(",");
if (getName() != null)
sb.append("Name: ").append(getName()).append(",");
if (getNextToken() != null)
sb.append("NextToken: ").append(getNextToken()).append(",");
if (getTimeRange() != null)
sb.append("TimeRange: ").append(getTimeRange());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof GetAppMonitorDataRequest == false)
return false;
GetAppMonitorDataRequest other = (GetAppMonitorDataRequest) obj;
if (other.getFilters() == null ^ this.getFilters() == null)
return false;
if (other.getFilters() != null && other.getFilters().equals(this.getFilters()) == false)
return false;
if (other.getMaxResults() == null ^ this.getMaxResults() == null)
return false;
if (other.getMaxResults() != null && other.getMaxResults().equals(this.getMaxResults()) == false)
return false;
if (other.getName() == null ^ this.getName() == null)
return false;
if (other.getName() != null && other.getName().equals(this.getName()) == false)
return false;
if (other.getNextToken() == null ^ this.getNextToken() == null)
return false;
if (other.getNextToken() != null && other.getNextToken().equals(this.getNextToken()) == false)
return false;
if (other.getTimeRange() == null ^ this.getTimeRange() == null)
return false;
if (other.getTimeRange() != null && other.getTimeRange().equals(this.getTimeRange()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getFilters() == null) ? 0 : getFilters().hashCode());
hashCode = prime * hashCode + ((getMaxResults() == null) ? 0 : getMaxResults().hashCode());
hashCode = prime * hashCode + ((getName() == null) ? 0 : getName().hashCode());
hashCode = prime * hashCode + ((getNextToken() == null) ? 0 : getNextToken().hashCode());
hashCode = prime * hashCode + ((getTimeRange() == null) ? 0 : getTimeRange().hashCode());
return hashCode;
}
@Override
public GetAppMonitorDataRequest clone() {
return (GetAppMonitorDataRequest) super.clone();
}
}