com.amazonaws.services.ec2.model.ScheduledInstanceRecurrenceRequest Maven / Gradle / Ivy
/*
* Copyright 2013-2018 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 the recurring schedule for a Scheduled Instance.
*
*
* @see AWS API Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class ScheduledInstanceRecurrenceRequest implements Serializable, Cloneable {
/**
*
* The frequency (Daily
, Weekly
, or Monthly
).
*
*/
private String frequency;
/**
*
* The interval quantity. The interval unit depends on the value of Frequency
. For example, every 2
* weeks or every 2 months.
*
*/
private Integer interval;
/**
*
* The days. For a monthly schedule, this is one or more days of the month (1-31). For a weekly schedule, this is
* one or more days of the week (1-7, where 1 is Sunday). You can't specify this value with a daily schedule. If the
* occurrence is relative to the end of the month, you can specify only a single day.
*
*/
private com.amazonaws.internal.SdkInternalList occurrenceDays;
/**
*
* Indicates whether the occurrence is relative to the end of the specified week or month. You can't specify this
* value with a daily schedule.
*
*/
private Boolean occurrenceRelativeToEnd;
/**
*
* The unit for OccurrenceDays
(DayOfWeek
or DayOfMonth
). This value is
* required for a monthly schedule. You can't specify DayOfWeek
with a weekly schedule. You can't
* specify this value with a daily schedule.
*
*/
private String occurrenceUnit;
/**
*
* The frequency (Daily
, Weekly
, or Monthly
).
*
*
* @param frequency
* The frequency (Daily
, Weekly
, or Monthly
).
*/
public void setFrequency(String frequency) {
this.frequency = frequency;
}
/**
*
* The frequency (Daily
, Weekly
, or Monthly
).
*
*
* @return The frequency (Daily
, Weekly
, or Monthly
).
*/
public String getFrequency() {
return this.frequency;
}
/**
*
* The frequency (Daily
, Weekly
, or Monthly
).
*
*
* @param frequency
* The frequency (Daily
, Weekly
, or Monthly
).
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ScheduledInstanceRecurrenceRequest withFrequency(String frequency) {
setFrequency(frequency);
return this;
}
/**
*
* The interval quantity. The interval unit depends on the value of Frequency
. For example, every 2
* weeks or every 2 months.
*
*
* @param interval
* The interval quantity. The interval unit depends on the value of Frequency
. For example,
* every 2 weeks or every 2 months.
*/
public void setInterval(Integer interval) {
this.interval = interval;
}
/**
*
* The interval quantity. The interval unit depends on the value of Frequency
. For example, every 2
* weeks or every 2 months.
*
*
* @return The interval quantity. The interval unit depends on the value of Frequency
. For example,
* every 2 weeks or every 2 months.
*/
public Integer getInterval() {
return this.interval;
}
/**
*
* The interval quantity. The interval unit depends on the value of Frequency
. For example, every 2
* weeks or every 2 months.
*
*
* @param interval
* The interval quantity. The interval unit depends on the value of Frequency
. For example,
* every 2 weeks or every 2 months.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ScheduledInstanceRecurrenceRequest withInterval(Integer interval) {
setInterval(interval);
return this;
}
/**
*
* The days. For a monthly schedule, this is one or more days of the month (1-31). For a weekly schedule, this is
* one or more days of the week (1-7, where 1 is Sunday). You can't specify this value with a daily schedule. If the
* occurrence is relative to the end of the month, you can specify only a single day.
*
*
* @return The days. For a monthly schedule, this is one or more days of the month (1-31). For a weekly schedule,
* this is one or more days of the week (1-7, where 1 is Sunday). You can't specify this value with a daily
* schedule. If the occurrence is relative to the end of the month, you can specify only a single day.
*/
public java.util.List getOccurrenceDays() {
if (occurrenceDays == null) {
occurrenceDays = new com.amazonaws.internal.SdkInternalList();
}
return occurrenceDays;
}
/**
*
* The days. For a monthly schedule, this is one or more days of the month (1-31). For a weekly schedule, this is
* one or more days of the week (1-7, where 1 is Sunday). You can't specify this value with a daily schedule. If the
* occurrence is relative to the end of the month, you can specify only a single day.
*
*
* @param occurrenceDays
* The days. For a monthly schedule, this is one or more days of the month (1-31). For a weekly schedule,
* this is one or more days of the week (1-7, where 1 is Sunday). You can't specify this value with a daily
* schedule. If the occurrence is relative to the end of the month, you can specify only a single day.
*/
public void setOccurrenceDays(java.util.Collection occurrenceDays) {
if (occurrenceDays == null) {
this.occurrenceDays = null;
return;
}
this.occurrenceDays = new com.amazonaws.internal.SdkInternalList(occurrenceDays);
}
/**
*
* The days. For a monthly schedule, this is one or more days of the month (1-31). For a weekly schedule, this is
* one or more days of the week (1-7, where 1 is Sunday). You can't specify this value with a daily schedule. If the
* occurrence is relative to the end of the month, you can specify only a single day.
*
*
* NOTE: This method appends the values to the existing list (if any). Use
* {@link #setOccurrenceDays(java.util.Collection)} or {@link #withOccurrenceDays(java.util.Collection)} if you want
* to override the existing values.
*
*
* @param occurrenceDays
* The days. For a monthly schedule, this is one or more days of the month (1-31). For a weekly schedule,
* this is one or more days of the week (1-7, where 1 is Sunday). You can't specify this value with a daily
* schedule. If the occurrence is relative to the end of the month, you can specify only a single day.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ScheduledInstanceRecurrenceRequest withOccurrenceDays(Integer... occurrenceDays) {
if (this.occurrenceDays == null) {
setOccurrenceDays(new com.amazonaws.internal.SdkInternalList(occurrenceDays.length));
}
for (Integer ele : occurrenceDays) {
this.occurrenceDays.add(ele);
}
return this;
}
/**
*
* The days. For a monthly schedule, this is one or more days of the month (1-31). For a weekly schedule, this is
* one or more days of the week (1-7, where 1 is Sunday). You can't specify this value with a daily schedule. If the
* occurrence is relative to the end of the month, you can specify only a single day.
*
*
* @param occurrenceDays
* The days. For a monthly schedule, this is one or more days of the month (1-31). For a weekly schedule,
* this is one or more days of the week (1-7, where 1 is Sunday). You can't specify this value with a daily
* schedule. If the occurrence is relative to the end of the month, you can specify only a single day.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ScheduledInstanceRecurrenceRequest withOccurrenceDays(java.util.Collection occurrenceDays) {
setOccurrenceDays(occurrenceDays);
return this;
}
/**
*
* Indicates whether the occurrence is relative to the end of the specified week or month. You can't specify this
* value with a daily schedule.
*
*
* @param occurrenceRelativeToEnd
* Indicates whether the occurrence is relative to the end of the specified week or month. You can't specify
* this value with a daily schedule.
*/
public void setOccurrenceRelativeToEnd(Boolean occurrenceRelativeToEnd) {
this.occurrenceRelativeToEnd = occurrenceRelativeToEnd;
}
/**
*
* Indicates whether the occurrence is relative to the end of the specified week or month. You can't specify this
* value with a daily schedule.
*
*
* @return Indicates whether the occurrence is relative to the end of the specified week or month. You can't specify
* this value with a daily schedule.
*/
public Boolean getOccurrenceRelativeToEnd() {
return this.occurrenceRelativeToEnd;
}
/**
*
* Indicates whether the occurrence is relative to the end of the specified week or month. You can't specify this
* value with a daily schedule.
*
*
* @param occurrenceRelativeToEnd
* Indicates whether the occurrence is relative to the end of the specified week or month. You can't specify
* this value with a daily schedule.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ScheduledInstanceRecurrenceRequest withOccurrenceRelativeToEnd(Boolean occurrenceRelativeToEnd) {
setOccurrenceRelativeToEnd(occurrenceRelativeToEnd);
return this;
}
/**
*
* Indicates whether the occurrence is relative to the end of the specified week or month. You can't specify this
* value with a daily schedule.
*
*
* @return Indicates whether the occurrence is relative to the end of the specified week or month. You can't specify
* this value with a daily schedule.
*/
public Boolean isOccurrenceRelativeToEnd() {
return this.occurrenceRelativeToEnd;
}
/**
*
* The unit for OccurrenceDays
(DayOfWeek
or DayOfMonth
). This value is
* required for a monthly schedule. You can't specify DayOfWeek
with a weekly schedule. You can't
* specify this value with a daily schedule.
*
*
* @param occurrenceUnit
* The unit for OccurrenceDays
(DayOfWeek
or DayOfMonth
). This value
* is required for a monthly schedule. You can't specify DayOfWeek
with a weekly schedule. You
* can't specify this value with a daily schedule.
*/
public void setOccurrenceUnit(String occurrenceUnit) {
this.occurrenceUnit = occurrenceUnit;
}
/**
*
* The unit for OccurrenceDays
(DayOfWeek
or DayOfMonth
). This value is
* required for a monthly schedule. You can't specify DayOfWeek
with a weekly schedule. You can't
* specify this value with a daily schedule.
*
*
* @return The unit for OccurrenceDays
(DayOfWeek
or DayOfMonth
). This value
* is required for a monthly schedule. You can't specify DayOfWeek
with a weekly schedule. You
* can't specify this value with a daily schedule.
*/
public String getOccurrenceUnit() {
return this.occurrenceUnit;
}
/**
*
* The unit for OccurrenceDays
(DayOfWeek
or DayOfMonth
). This value is
* required for a monthly schedule. You can't specify DayOfWeek
with a weekly schedule. You can't
* specify this value with a daily schedule.
*
*
* @param occurrenceUnit
* The unit for OccurrenceDays
(DayOfWeek
or DayOfMonth
). This value
* is required for a monthly schedule. You can't specify DayOfWeek
with a weekly schedule. You
* can't specify this value with a daily schedule.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ScheduledInstanceRecurrenceRequest withOccurrenceUnit(String occurrenceUnit) {
setOccurrenceUnit(occurrenceUnit);
return this;
}
/**
* Returns a string representation of this object; useful for testing and debugging.
*
* @return A string representation of this object.
*
* @see java.lang.Object#toString()
*/
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("{");
if (getFrequency() != null)
sb.append("Frequency: ").append(getFrequency()).append(",");
if (getInterval() != null)
sb.append("Interval: ").append(getInterval()).append(",");
if (getOccurrenceDays() != null)
sb.append("OccurrenceDays: ").append(getOccurrenceDays()).append(",");
if (getOccurrenceRelativeToEnd() != null)
sb.append("OccurrenceRelativeToEnd: ").append(getOccurrenceRelativeToEnd()).append(",");
if (getOccurrenceUnit() != null)
sb.append("OccurrenceUnit: ").append(getOccurrenceUnit());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof ScheduledInstanceRecurrenceRequest == false)
return false;
ScheduledInstanceRecurrenceRequest other = (ScheduledInstanceRecurrenceRequest) obj;
if (other.getFrequency() == null ^ this.getFrequency() == null)
return false;
if (other.getFrequency() != null && other.getFrequency().equals(this.getFrequency()) == false)
return false;
if (other.getInterval() == null ^ this.getInterval() == null)
return false;
if (other.getInterval() != null && other.getInterval().equals(this.getInterval()) == false)
return false;
if (other.getOccurrenceDays() == null ^ this.getOccurrenceDays() == null)
return false;
if (other.getOccurrenceDays() != null && other.getOccurrenceDays().equals(this.getOccurrenceDays()) == false)
return false;
if (other.getOccurrenceRelativeToEnd() == null ^ this.getOccurrenceRelativeToEnd() == null)
return false;
if (other.getOccurrenceRelativeToEnd() != null && other.getOccurrenceRelativeToEnd().equals(this.getOccurrenceRelativeToEnd()) == false)
return false;
if (other.getOccurrenceUnit() == null ^ this.getOccurrenceUnit() == null)
return false;
if (other.getOccurrenceUnit() != null && other.getOccurrenceUnit().equals(this.getOccurrenceUnit()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getFrequency() == null) ? 0 : getFrequency().hashCode());
hashCode = prime * hashCode + ((getInterval() == null) ? 0 : getInterval().hashCode());
hashCode = prime * hashCode + ((getOccurrenceDays() == null) ? 0 : getOccurrenceDays().hashCode());
hashCode = prime * hashCode + ((getOccurrenceRelativeToEnd() == null) ? 0 : getOccurrenceRelativeToEnd().hashCode());
hashCode = prime * hashCode + ((getOccurrenceUnit() == null) ? 0 : getOccurrenceUnit().hashCode());
return hashCode;
}
@Override
public ScheduledInstanceRecurrenceRequest clone() {
try {
return (ScheduledInstanceRecurrenceRequest) super.clone();
} catch (CloneNotSupportedException e) {
throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e);
}
}
}