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

com.amazonaws.services.devopsguru.model.CloudWatchMetricsDetail Maven / Gradle / Ivy

Go to download

The AWS Java SDK for Amazon DevOps Guru module holds the client classes that are used for communicating with Amazon DevOps Guru Service

There is a newer version: 1.12.778
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.devopsguru.model;

import java.io.Serializable;
import javax.annotation.Generated;
import com.amazonaws.protocol.StructuredPojo;
import com.amazonaws.protocol.ProtocolMarshaller;

/**
 * 

* Information about an Amazon CloudWatch metric. *

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

* The name of the CloudWatch metric. *

*/ private String metricName; /** *

* The namespace of the CloudWatch metric. A namespace is a container for CloudWatch metrics. *

*/ private String namespace; /** *

* An array of CloudWatch dimensions associated with *

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

* The type of statistic associated with the CloudWatch metric. For more information, see Statistics in the Amazon CloudWatch User Guide. *

*/ private String stat; /** *

* The unit of measure used for the CloudWatch metric. For example, Bytes, Seconds, * Count, and Percent. *

*/ private String unit; /** *

* The length of time associated with the CloudWatch metric in number of seconds. *

*/ private Integer period; /** *

* This object returns anomaly metric data. *

*/ private CloudWatchMetricsDataSummary metricDataSummary; /** *

* The name of the CloudWatch metric. *

* * @param metricName * The name of the CloudWatch metric. */ public void setMetricName(String metricName) { this.metricName = metricName; } /** *

* The name of the CloudWatch metric. *

* * @return The name of the CloudWatch metric. */ public String getMetricName() { return this.metricName; } /** *

* The name of the CloudWatch metric. *

* * @param metricName * The name of the CloudWatch metric. * @return Returns a reference to this object so that method calls can be chained together. */ public CloudWatchMetricsDetail withMetricName(String metricName) { setMetricName(metricName); return this; } /** *

* The namespace of the CloudWatch metric. A namespace is a container for CloudWatch metrics. *

* * @param namespace * The namespace of the CloudWatch metric. A namespace is a container for CloudWatch metrics. */ public void setNamespace(String namespace) { this.namespace = namespace; } /** *

* The namespace of the CloudWatch metric. A namespace is a container for CloudWatch metrics. *

* * @return The namespace of the CloudWatch metric. A namespace is a container for CloudWatch metrics. */ public String getNamespace() { return this.namespace; } /** *

* The namespace of the CloudWatch metric. A namespace is a container for CloudWatch metrics. *

* * @param namespace * The namespace of the CloudWatch metric. A namespace is a container for CloudWatch metrics. * @return Returns a reference to this object so that method calls can be chained together. */ public CloudWatchMetricsDetail withNamespace(String namespace) { setNamespace(namespace); return this; } /** *

* An array of CloudWatch dimensions associated with *

* * @return An array of CloudWatch dimensions associated with */ public java.util.List getDimensions() { return dimensions; } /** *

* An array of CloudWatch dimensions associated with *

* * @param dimensions * An array of CloudWatch dimensions associated with */ public void setDimensions(java.util.Collection dimensions) { if (dimensions == null) { this.dimensions = null; return; } this.dimensions = new java.util.ArrayList(dimensions); } /** *

* An array of CloudWatch dimensions associated with *

*

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

* * @param dimensions * An array of CloudWatch dimensions associated with * @return Returns a reference to this object so that method calls can be chained together. */ public CloudWatchMetricsDetail withDimensions(CloudWatchMetricsDimension... dimensions) { if (this.dimensions == null) { setDimensions(new java.util.ArrayList(dimensions.length)); } for (CloudWatchMetricsDimension ele : dimensions) { this.dimensions.add(ele); } return this; } /** *

* An array of CloudWatch dimensions associated with *

* * @param dimensions * An array of CloudWatch dimensions associated with * @return Returns a reference to this object so that method calls can be chained together. */ public CloudWatchMetricsDetail withDimensions(java.util.Collection dimensions) { setDimensions(dimensions); return this; } /** *

* The type of statistic associated with the CloudWatch metric. For more information, see Statistics in the Amazon CloudWatch User Guide. *

* * @param stat * The type of statistic associated with the CloudWatch metric. For more information, see Statistics in the Amazon CloudWatch User Guide. * @see CloudWatchMetricsStat */ public void setStat(String stat) { this.stat = stat; } /** *

* The type of statistic associated with the CloudWatch metric. For more information, see Statistics in the Amazon CloudWatch User Guide. *

* * @return The type of statistic associated with the CloudWatch metric. For more information, see Statistics in the Amazon CloudWatch User Guide. * @see CloudWatchMetricsStat */ public String getStat() { return this.stat; } /** *

* The type of statistic associated with the CloudWatch metric. For more information, see Statistics in the Amazon CloudWatch User Guide. *

* * @param stat * The type of statistic associated with the CloudWatch metric. For more information, see Statistics in the Amazon CloudWatch User Guide. * @return Returns a reference to this object so that method calls can be chained together. * @see CloudWatchMetricsStat */ public CloudWatchMetricsDetail withStat(String stat) { setStat(stat); return this; } /** *

* The type of statistic associated with the CloudWatch metric. For more information, see Statistics in the Amazon CloudWatch User Guide. *

* * @param stat * The type of statistic associated with the CloudWatch metric. For more information, see Statistics in the Amazon CloudWatch User Guide. * @return Returns a reference to this object so that method calls can be chained together. * @see CloudWatchMetricsStat */ public CloudWatchMetricsDetail withStat(CloudWatchMetricsStat stat) { this.stat = stat.toString(); return this; } /** *

* The unit of measure used for the CloudWatch metric. For example, Bytes, Seconds, * Count, and Percent. *

* * @param unit * The unit of measure used for the CloudWatch metric. For example, Bytes, Seconds, * Count, and Percent. */ public void setUnit(String unit) { this.unit = unit; } /** *

* The unit of measure used for the CloudWatch metric. For example, Bytes, Seconds, * Count, and Percent. *

* * @return The unit of measure used for the CloudWatch metric. For example, Bytes, Seconds * , Count, and Percent. */ public String getUnit() { return this.unit; } /** *

* The unit of measure used for the CloudWatch metric. For example, Bytes, Seconds, * Count, and Percent. *

* * @param unit * The unit of measure used for the CloudWatch metric. For example, Bytes, Seconds, * Count, and Percent. * @return Returns a reference to this object so that method calls can be chained together. */ public CloudWatchMetricsDetail withUnit(String unit) { setUnit(unit); return this; } /** *

* The length of time associated with the CloudWatch metric in number of seconds. *

* * @param period * The length of time associated with the CloudWatch metric in number of seconds. */ public void setPeriod(Integer period) { this.period = period; } /** *

* The length of time associated with the CloudWatch metric in number of seconds. *

* * @return The length of time associated with the CloudWatch metric in number of seconds. */ public Integer getPeriod() { return this.period; } /** *

* The length of time associated with the CloudWatch metric in number of seconds. *

* * @param period * The length of time associated with the CloudWatch metric in number of seconds. * @return Returns a reference to this object so that method calls can be chained together. */ public CloudWatchMetricsDetail withPeriod(Integer period) { setPeriod(period); return this; } /** *

* This object returns anomaly metric data. *

* * @param metricDataSummary * This object returns anomaly metric data. */ public void setMetricDataSummary(CloudWatchMetricsDataSummary metricDataSummary) { this.metricDataSummary = metricDataSummary; } /** *

* This object returns anomaly metric data. *

* * @return This object returns anomaly metric data. */ public CloudWatchMetricsDataSummary getMetricDataSummary() { return this.metricDataSummary; } /** *

* This object returns anomaly metric data. *

* * @param metricDataSummary * This object returns anomaly metric data. * @return Returns a reference to this object so that method calls can be chained together. */ public CloudWatchMetricsDetail withMetricDataSummary(CloudWatchMetricsDataSummary metricDataSummary) { setMetricDataSummary(metricDataSummary); 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 (getMetricName() != null) sb.append("MetricName: ").append(getMetricName()).append(","); if (getNamespace() != null) sb.append("Namespace: ").append(getNamespace()).append(","); if (getDimensions() != null) sb.append("Dimensions: ").append(getDimensions()).append(","); if (getStat() != null) sb.append("Stat: ").append(getStat()).append(","); if (getUnit() != null) sb.append("Unit: ").append(getUnit()).append(","); if (getPeriod() != null) sb.append("Period: ").append(getPeriod()).append(","); if (getMetricDataSummary() != null) sb.append("MetricDataSummary: ").append(getMetricDataSummary()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof CloudWatchMetricsDetail == false) return false; CloudWatchMetricsDetail other = (CloudWatchMetricsDetail) obj; if (other.getMetricName() == null ^ this.getMetricName() == null) return false; if (other.getMetricName() != null && other.getMetricName().equals(this.getMetricName()) == false) return false; if (other.getNamespace() == null ^ this.getNamespace() == null) return false; if (other.getNamespace() != null && other.getNamespace().equals(this.getNamespace()) == false) return false; if (other.getDimensions() == null ^ this.getDimensions() == null) return false; if (other.getDimensions() != null && other.getDimensions().equals(this.getDimensions()) == false) return false; if (other.getStat() == null ^ this.getStat() == null) return false; if (other.getStat() != null && other.getStat().equals(this.getStat()) == false) return false; if (other.getUnit() == null ^ this.getUnit() == null) return false; if (other.getUnit() != null && other.getUnit().equals(this.getUnit()) == false) return false; if (other.getPeriod() == null ^ this.getPeriod() == null) return false; if (other.getPeriod() != null && other.getPeriod().equals(this.getPeriod()) == false) return false; if (other.getMetricDataSummary() == null ^ this.getMetricDataSummary() == null) return false; if (other.getMetricDataSummary() != null && other.getMetricDataSummary().equals(this.getMetricDataSummary()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getMetricName() == null) ? 0 : getMetricName().hashCode()); hashCode = prime * hashCode + ((getNamespace() == null) ? 0 : getNamespace().hashCode()); hashCode = prime * hashCode + ((getDimensions() == null) ? 0 : getDimensions().hashCode()); hashCode = prime * hashCode + ((getStat() == null) ? 0 : getStat().hashCode()); hashCode = prime * hashCode + ((getUnit() == null) ? 0 : getUnit().hashCode()); hashCode = prime * hashCode + ((getPeriod() == null) ? 0 : getPeriod().hashCode()); hashCode = prime * hashCode + ((getMetricDataSummary() == null) ? 0 : getMetricDataSummary().hashCode()); return hashCode; } @Override public CloudWatchMetricsDetail clone() { try { return (CloudWatchMetricsDetail) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } @com.amazonaws.annotation.SdkInternalApi @Override public void marshall(ProtocolMarshaller protocolMarshaller) { com.amazonaws.services.devopsguru.model.transform.CloudWatchMetricsDetailMarshaller.getInstance().marshall(this, protocolMarshaller); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy