/* * Copyright 2018-2023 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.ec2.model; import java.io.Serializable; import javax.annotation.Generated; /** *
* Describes an Infrastructure Performance subscription. *
* * @see AWS API * Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class Subscription implements Serializable, Cloneable { /** *
* The Region or Availability Zone that's the source for the subscription. For example, us-east-1
.
*
* The Region or Availability Zone that's the target for the subscription. For example, eu-west-1
.
*
* The metric used for the subscription. *
*/ private String metric; /** ** The statistic used for the subscription. *
*/ private String statistic; /** ** The data aggregation time for the subscription. *
*/ private String period; /** *
* The Region or Availability Zone that's the source for the subscription. For example, us-east-1
.
*
us-east-1
.
*/
public void setSource(String source) {
this.source = source;
}
/**
*
* The Region or Availability Zone that's the source for the subscription. For example, us-east-1
.
*
us-east-1
.
*/
public String getSource() {
return this.source;
}
/**
*
* The Region or Availability Zone that's the source for the subscription. For example, us-east-1
.
*
us-east-1
.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Subscription withSource(String source) {
setSource(source);
return this;
}
/**
*
* The Region or Availability Zone that's the target for the subscription. For example, eu-west-1
.
*
eu-west-1
.
*/
public void setDestination(String destination) {
this.destination = destination;
}
/**
*
* The Region or Availability Zone that's the target for the subscription. For example, eu-west-1
.
*
eu-west-1
.
*/
public String getDestination() {
return this.destination;
}
/**
*
* The Region or Availability Zone that's the target for the subscription. For example, eu-west-1
.
*
eu-west-1
.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public Subscription withDestination(String destination) {
setDestination(destination);
return this;
}
/**
* * The metric used for the subscription. *
* * @param metric * The metric used for the subscription. * @see MetricType */ public void setMetric(String metric) { this.metric = metric; } /** ** The metric used for the subscription. *
* * @return The metric used for the subscription. * @see MetricType */ public String getMetric() { return this.metric; } /** ** The metric used for the subscription. *
* * @param metric * The metric used for the subscription. * @return Returns a reference to this object so that method calls can be chained together. * @see MetricType */ public Subscription withMetric(String metric) { setMetric(metric); return this; } /** ** The metric used for the subscription. *
* * @param metric * The metric used for the subscription. * @return Returns a reference to this object so that method calls can be chained together. * @see MetricType */ public Subscription withMetric(MetricType metric) { this.metric = metric.toString(); return this; } /** ** The statistic used for the subscription. *
* * @param statistic * The statistic used for the subscription. * @see StatisticType */ public void setStatistic(String statistic) { this.statistic = statistic; } /** ** The statistic used for the subscription. *
* * @return The statistic used for the subscription. * @see StatisticType */ public String getStatistic() { return this.statistic; } /** ** The statistic used for the subscription. *
* * @param statistic * The statistic used for the subscription. * @return Returns a reference to this object so that method calls can be chained together. * @see StatisticType */ public Subscription withStatistic(String statistic) { setStatistic(statistic); return this; } /** ** The statistic used for the subscription. *
* * @param statistic * The statistic used for the subscription. * @return Returns a reference to this object so that method calls can be chained together. * @see StatisticType */ public Subscription withStatistic(StatisticType statistic) { this.statistic = statistic.toString(); return this; } /** ** The data aggregation time for the subscription. *
* * @param period * The data aggregation time for the subscription. * @see PeriodType */ public void setPeriod(String period) { this.period = period; } /** ** The data aggregation time for the subscription. *
* * @return The data aggregation time for the subscription. * @see PeriodType */ public String getPeriod() { return this.period; } /** ** The data aggregation time for the subscription. *
* * @param period * The data aggregation time for the subscription. * @return Returns a reference to this object so that method calls can be chained together. * @see PeriodType */ public Subscription withPeriod(String period) { setPeriod(period); return this; } /** ** The data aggregation time for the subscription. *
* * @param period * The data aggregation time for the subscription. * @return Returns a reference to this object so that method calls can be chained together. * @see PeriodType */ public Subscription withPeriod(PeriodType period) { this.period = period.toString(); 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 (getSource() != null) sb.append("Source: ").append(getSource()).append(","); if (getDestination() != null) sb.append("Destination: ").append(getDestination()).append(","); if (getMetric() != null) sb.append("Metric: ").append(getMetric()).append(","); if (getStatistic() != null) sb.append("Statistic: ").append(getStatistic()).append(","); if (getPeriod() != null) sb.append("Period: ").append(getPeriod()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof Subscription == false) return false; Subscription other = (Subscription) obj; if (other.getSource() == null ^ this.getSource() == null) return false; if (other.getSource() != null && other.getSource().equals(this.getSource()) == false) return false; if (other.getDestination() == null ^ this.getDestination() == null) return false; if (other.getDestination() != null && other.getDestination().equals(this.getDestination()) == false) return false; if (other.getMetric() == null ^ this.getMetric() == null) return false; if (other.getMetric() != null && other.getMetric().equals(this.getMetric()) == false) return false; if (other.getStatistic() == null ^ this.getStatistic() == null) return false; if (other.getStatistic() != null && other.getStatistic().equals(this.getStatistic()) == false) return false; if (other.getPeriod() == null ^ this.getPeriod() == null) return false; if (other.getPeriod() != null && other.getPeriod().equals(this.getPeriod()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getSource() == null) ? 0 : getSource().hashCode()); hashCode = prime * hashCode + ((getDestination() == null) ? 0 : getDestination().hashCode()); hashCode = prime * hashCode + ((getMetric() == null) ? 0 : getMetric().hashCode()); hashCode = prime * hashCode + ((getStatistic() == null) ? 0 : getStatistic().hashCode()); hashCode = prime * hashCode + ((getPeriod() == null) ? 0 : getPeriod().hashCode()); return hashCode; } @Override public Subscription clone() { try { return (Subscription) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } }