Class DescribeAlarmsForMetricResult
- java.lang.Object
-
- com.amazonaws.services.cloudwatch.model.DescribeAlarmsForMetricResult
-
- All Implemented Interfaces:
Serializable
,Cloneable
public class DescribeAlarmsForMetricResult extends Object implements Serializable, Cloneable
The output for the DescribeAlarmsForMetric action.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DescribeAlarmsForMetricResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DescribeAlarmsForMetricResult
clone()
boolean
equals(Object obj)
List<MetricAlarm>
getMetricAlarms()
A list of information for each alarm with the specified metric.int
hashCode()
void
setMetricAlarms(Collection<MetricAlarm> metricAlarms)
A list of information for each alarm with the specified metric.String
toString()
Returns a string representation of this object; useful for testing and debugging.DescribeAlarmsForMetricResult
withMetricAlarms(MetricAlarm... metricAlarms)
A list of information for each alarm with the specified metric.DescribeAlarmsForMetricResult
withMetricAlarms(Collection<MetricAlarm> metricAlarms)
A list of information for each alarm with the specified metric.
-
-
-
Method Detail
-
getMetricAlarms
public List<MetricAlarm> getMetricAlarms()
A list of information for each alarm with the specified metric.
- Returns:
- A list of information for each alarm with the specified metric.
-
setMetricAlarms
public void setMetricAlarms(Collection<MetricAlarm> metricAlarms)
A list of information for each alarm with the specified metric.
- Parameters:
metricAlarms
- A list of information for each alarm with the specified metric.
-
withMetricAlarms
public DescribeAlarmsForMetricResult withMetricAlarms(MetricAlarm... metricAlarms)
A list of information for each alarm with the specified metric.
NOTE: This method appends the values to the existing list (if any). Use
setMetricAlarms(java.util.Collection)
orwithMetricAlarms(java.util.Collection)
if you want to override the existing values.- Parameters:
metricAlarms
- A list of information for each alarm with the specified metric.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
withMetricAlarms
public DescribeAlarmsForMetricResult withMetricAlarms(Collection<MetricAlarm> metricAlarms)
A list of information for each alarm with the specified metric.
- Parameters:
metricAlarms
- A list of information for each alarm with the specified metric.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
toString
public String toString()
Returns a string representation of this object; useful for testing and debugging.- Overrides:
toString
in classObject
- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
clone
public DescribeAlarmsForMetricResult clone()
-
-