/* * 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.pinpoint.model; import java.io.Serializable; import javax.annotation.Generated; import com.amazonaws.protocol.StructuredPojo; import com.amazonaws.protocol.ProtocolMarshaller; /** *

* Specifies the schedule settings for a campaign. *

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

* The scheduled time, in ISO 8601 format, when the campaign ended or will end. *

*/ private String endTime; /** *

* The type of event that causes the campaign to be sent, if the value of the Frequency property is EVENT. *

*/ private CampaignEventFilter eventFilter; /** *

* Specifies how often the campaign is sent or whether the campaign is sent in response to a specific event. *

*/ private String frequency; /** *

* Specifies whether the start and end times for the campaign schedule use each recipient's local time. To base the * schedule on each recipient's local time, set this value to true. *

*/ private Boolean isLocalTime; /** *

* The default quiet time for the campaign. Quiet time is a specific time range when a campaign doesn't send * messages to endpoints, if all the following conditions are met: *

* *

* If any of the preceding conditions isn't met, the endpoint will receive messages from the campaign, even if quiet * time is enabled. *

*/ private QuietTime quietTime; /** *

* The scheduled time when the campaign began or will begin. Valid values are: IMMEDIATE, to start the campaign * immediately; or, a specific time in ISO 8601 format. *

*/ private String startTime; /** *

* The starting UTC offset for the campaign schedule, if the value of the IsLocalTime property is true. Valid values * are: UTC, UTC+01, UTC+02, UTC+03, UTC+03:30, UTC+04, UTC+04:30, UTC+05, UTC+05:30, UTC+05:45, UTC+06, UTC+06:30, * UTC+07, UTC+08, UTC+09, UTC+09:30, UTC+10, UTC+10:30, UTC+11, UTC+12, UTC+13, UTC-02, UTC-03, UTC-04, UTC-05, * UTC-06, UTC-07, UTC-08, UTC-09, UTC-10, and UTC-11. *

*/ private String timezone; /** *

* The scheduled time, in ISO 8601 format, when the campaign ended or will end. *

* * @param endTime * The scheduled time, in ISO 8601 format, when the campaign ended or will end. */ public void setEndTime(String endTime) { this.endTime = endTime; } /** *

* The scheduled time, in ISO 8601 format, when the campaign ended or will end. *

* * @return The scheduled time, in ISO 8601 format, when the campaign ended or will end. */ public String getEndTime() { return this.endTime; } /** *

* The scheduled time, in ISO 8601 format, when the campaign ended or will end. *

* * @param endTime * The scheduled time, in ISO 8601 format, when the campaign ended or will end. * @return Returns a reference to this object so that method calls can be chained together. */ public Schedule withEndTime(String endTime) { setEndTime(endTime); return this; } /** *

* The type of event that causes the campaign to be sent, if the value of the Frequency property is EVENT. *

* * @param eventFilter * The type of event that causes the campaign to be sent, if the value of the Frequency property is EVENT. */ public void setEventFilter(CampaignEventFilter eventFilter) { this.eventFilter = eventFilter; } /** *

* The type of event that causes the campaign to be sent, if the value of the Frequency property is EVENT. *

* * @return The type of event that causes the campaign to be sent, if the value of the Frequency property is EVENT. */ public CampaignEventFilter getEventFilter() { return this.eventFilter; } /** *

* The type of event that causes the campaign to be sent, if the value of the Frequency property is EVENT. *

* * @param eventFilter * The type of event that causes the campaign to be sent, if the value of the Frequency property is EVENT. * @return Returns a reference to this object so that method calls can be chained together. */ public Schedule withEventFilter(CampaignEventFilter eventFilter) { setEventFilter(eventFilter); return this; } /** *

* Specifies how often the campaign is sent or whether the campaign is sent in response to a specific event. *

* * @param frequency * Specifies how often the campaign is sent or whether the campaign is sent in response to a specific event. * @see Frequency */ public void setFrequency(String frequency) { this.frequency = frequency; } /** *

* Specifies how often the campaign is sent or whether the campaign is sent in response to a specific event. *

* * @return Specifies how often the campaign is sent or whether the campaign is sent in response to a specific event. * @see Frequency */ public String getFrequency() { return this.frequency; } /** *

* Specifies how often the campaign is sent or whether the campaign is sent in response to a specific event. *

* * @param frequency * Specifies how often the campaign is sent or whether the campaign is sent in response to a specific event. * @return Returns a reference to this object so that method calls can be chained together. * @see Frequency */ public Schedule withFrequency(String frequency) { setFrequency(frequency); return this; } /** *

* Specifies how often the campaign is sent or whether the campaign is sent in response to a specific event. *

* * @param frequency * Specifies how often the campaign is sent or whether the campaign is sent in response to a specific event. * @see Frequency */ public void setFrequency(Frequency frequency) { withFrequency(frequency); } /** *

* Specifies how often the campaign is sent or whether the campaign is sent in response to a specific event. *

* * @param frequency * Specifies how often the campaign is sent or whether the campaign is sent in response to a specific event. * @return Returns a reference to this object so that method calls can be chained together. * @see Frequency */ public Schedule withFrequency(Frequency frequency) { this.frequency = frequency.toString(); return this; } /** *

* Specifies whether the start and end times for the campaign schedule use each recipient's local time. To base the * schedule on each recipient's local time, set this value to true. *

* * @param isLocalTime * Specifies whether the start and end times for the campaign schedule use each recipient's local time. To * base the schedule on each recipient's local time, set this value to true. */ public void setIsLocalTime(Boolean isLocalTime) { this.isLocalTime = isLocalTime; } /** *

* Specifies whether the start and end times for the campaign schedule use each recipient's local time. To base the * schedule on each recipient's local time, set this value to true. *

* * @return Specifies whether the start and end times for the campaign schedule use each recipient's local time. To * base the schedule on each recipient's local time, set this value to true. */ public Boolean getIsLocalTime() { return this.isLocalTime; } /** *

* Specifies whether the start and end times for the campaign schedule use each recipient's local time. To base the * schedule on each recipient's local time, set this value to true. *

* * @param isLocalTime * Specifies whether the start and end times for the campaign schedule use each recipient's local time. To * base the schedule on each recipient's local time, set this value to true. * @return Returns a reference to this object so that method calls can be chained together. */ public Schedule withIsLocalTime(Boolean isLocalTime) { setIsLocalTime(isLocalTime); return this; } /** *

* Specifies whether the start and end times for the campaign schedule use each recipient's local time. To base the * schedule on each recipient's local time, set this value to true. *

* * @return Specifies whether the start and end times for the campaign schedule use each recipient's local time. To * base the schedule on each recipient's local time, set this value to true. */ public Boolean isLocalTime() { return this.isLocalTime; } /** *

* The default quiet time for the campaign. Quiet time is a specific time range when a campaign doesn't send * messages to endpoints, if all the following conditions are met: *

* *

* If any of the preceding conditions isn't met, the endpoint will receive messages from the campaign, even if quiet * time is enabled. *

* * @param quietTime * The default quiet time for the campaign. Quiet time is a specific time range when a campaign doesn't send * messages to endpoints, if all the following conditions are met:

* *

* If any of the preceding conditions isn't met, the endpoint will receive messages from the campaign, even * if quiet time is enabled. */ public void setQuietTime(QuietTime quietTime) { this.quietTime = quietTime; } /** *

* The default quiet time for the campaign. Quiet time is a specific time range when a campaign doesn't send * messages to endpoints, if all the following conditions are met: *

* *

* If any of the preceding conditions isn't met, the endpoint will receive messages from the campaign, even if quiet * time is enabled. *

* * @return The default quiet time for the campaign. Quiet time is a specific time range when a campaign doesn't send * messages to endpoints, if all the following conditions are met:

* *

* If any of the preceding conditions isn't met, the endpoint will receive messages from the campaign, even * if quiet time is enabled. */ public QuietTime getQuietTime() { return this.quietTime; } /** *

* The default quiet time for the campaign. Quiet time is a specific time range when a campaign doesn't send * messages to endpoints, if all the following conditions are met: *

* *

* If any of the preceding conditions isn't met, the endpoint will receive messages from the campaign, even if quiet * time is enabled. *

* * @param quietTime * The default quiet time for the campaign. Quiet time is a specific time range when a campaign doesn't send * messages to endpoints, if all the following conditions are met:

* *

* If any of the preceding conditions isn't met, the endpoint will receive messages from the campaign, even * if quiet time is enabled. * @return Returns a reference to this object so that method calls can be chained together. */ public Schedule withQuietTime(QuietTime quietTime) { setQuietTime(quietTime); return this; } /** *

* The scheduled time when the campaign began or will begin. Valid values are: IMMEDIATE, to start the campaign * immediately; or, a specific time in ISO 8601 format. *

* * @param startTime * The scheduled time when the campaign began or will begin. Valid values are: IMMEDIATE, to start the * campaign immediately; or, a specific time in ISO 8601 format. */ public void setStartTime(String startTime) { this.startTime = startTime; } /** *

* The scheduled time when the campaign began or will begin. Valid values are: IMMEDIATE, to start the campaign * immediately; or, a specific time in ISO 8601 format. *

* * @return The scheduled time when the campaign began or will begin. Valid values are: IMMEDIATE, to start the * campaign immediately; or, a specific time in ISO 8601 format. */ public String getStartTime() { return this.startTime; } /** *

* The scheduled time when the campaign began or will begin. Valid values are: IMMEDIATE, to start the campaign * immediately; or, a specific time in ISO 8601 format. *

* * @param startTime * The scheduled time when the campaign began or will begin. Valid values are: IMMEDIATE, to start the * campaign immediately; or, a specific time in ISO 8601 format. * @return Returns a reference to this object so that method calls can be chained together. */ public Schedule withStartTime(String startTime) { setStartTime(startTime); return this; } /** *

* The starting UTC offset for the campaign schedule, if the value of the IsLocalTime property is true. Valid values * are: UTC, UTC+01, UTC+02, UTC+03, UTC+03:30, UTC+04, UTC+04:30, UTC+05, UTC+05:30, UTC+05:45, UTC+06, UTC+06:30, * UTC+07, UTC+08, UTC+09, UTC+09:30, UTC+10, UTC+10:30, UTC+11, UTC+12, UTC+13, UTC-02, UTC-03, UTC-04, UTC-05, * UTC-06, UTC-07, UTC-08, UTC-09, UTC-10, and UTC-11. *

* * @param timezone * The starting UTC offset for the campaign schedule, if the value of the IsLocalTime property is true. Valid * values are: UTC, UTC+01, UTC+02, UTC+03, UTC+03:30, UTC+04, UTC+04:30, UTC+05, UTC+05:30, UTC+05:45, * UTC+06, UTC+06:30, UTC+07, UTC+08, UTC+09, UTC+09:30, UTC+10, UTC+10:30, UTC+11, UTC+12, UTC+13, UTC-02, * UTC-03, UTC-04, UTC-05, UTC-06, UTC-07, UTC-08, UTC-09, UTC-10, and UTC-11. */ public void setTimezone(String timezone) { this.timezone = timezone; } /** *

* The starting UTC offset for the campaign schedule, if the value of the IsLocalTime property is true. Valid values * are: UTC, UTC+01, UTC+02, UTC+03, UTC+03:30, UTC+04, UTC+04:30, UTC+05, UTC+05:30, UTC+05:45, UTC+06, UTC+06:30, * UTC+07, UTC+08, UTC+09, UTC+09:30, UTC+10, UTC+10:30, UTC+11, UTC+12, UTC+13, UTC-02, UTC-03, UTC-04, UTC-05, * UTC-06, UTC-07, UTC-08, UTC-09, UTC-10, and UTC-11. *

* * @return The starting UTC offset for the campaign schedule, if the value of the IsLocalTime property is true. * Valid values are: UTC, UTC+01, UTC+02, UTC+03, UTC+03:30, UTC+04, UTC+04:30, UTC+05, UTC+05:30, * UTC+05:45, UTC+06, UTC+06:30, UTC+07, UTC+08, UTC+09, UTC+09:30, UTC+10, UTC+10:30, UTC+11, UTC+12, * UTC+13, UTC-02, UTC-03, UTC-04, UTC-05, UTC-06, UTC-07, UTC-08, UTC-09, UTC-10, and UTC-11. */ public String getTimezone() { return this.timezone; } /** *

* The starting UTC offset for the campaign schedule, if the value of the IsLocalTime property is true. Valid values * are: UTC, UTC+01, UTC+02, UTC+03, UTC+03:30, UTC+04, UTC+04:30, UTC+05, UTC+05:30, UTC+05:45, UTC+06, UTC+06:30, * UTC+07, UTC+08, UTC+09, UTC+09:30, UTC+10, UTC+10:30, UTC+11, UTC+12, UTC+13, UTC-02, UTC-03, UTC-04, UTC-05, * UTC-06, UTC-07, UTC-08, UTC-09, UTC-10, and UTC-11. *

* * @param timezone * The starting UTC offset for the campaign schedule, if the value of the IsLocalTime property is true. Valid * values are: UTC, UTC+01, UTC+02, UTC+03, UTC+03:30, UTC+04, UTC+04:30, UTC+05, UTC+05:30, UTC+05:45, * UTC+06, UTC+06:30, UTC+07, UTC+08, UTC+09, UTC+09:30, UTC+10, UTC+10:30, UTC+11, UTC+12, UTC+13, UTC-02, * UTC-03, UTC-04, UTC-05, UTC-06, UTC-07, UTC-08, UTC-09, UTC-10, and UTC-11. * @return Returns a reference to this object so that method calls can be chained together. */ public Schedule withTimezone(String timezone) { setTimezone(timezone); 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 (getEndTime() != null) sb.append("EndTime: ").append(getEndTime()).append(","); if (getEventFilter() != null) sb.append("EventFilter: ").append(getEventFilter()).append(","); if (getFrequency() != null) sb.append("Frequency: ").append(getFrequency()).append(","); if (getIsLocalTime() != null) sb.append("IsLocalTime: ").append(getIsLocalTime()).append(","); if (getQuietTime() != null) sb.append("QuietTime: ").append(getQuietTime()).append(","); if (getStartTime() != null) sb.append("StartTime: ").append(getStartTime()).append(","); if (getTimezone() != null) sb.append("Timezone: ").append(getTimezone()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof Schedule == false) return false; Schedule other = (Schedule) obj; if (other.getEndTime() == null ^ this.getEndTime() == null) return false; if (other.getEndTime() != null && other.getEndTime().equals(this.getEndTime()) == false) return false; if (other.getEventFilter() == null ^ this.getEventFilter() == null) return false; if (other.getEventFilter() != null && other.getEventFilter().equals(this.getEventFilter()) == false) return false; if (other.getFrequency() == null ^ this.getFrequency() == null) return false; if (other.getFrequency() != null && other.getFrequency().equals(this.getFrequency()) == false) return false; if (other.getIsLocalTime() == null ^ this.getIsLocalTime() == null) return false; if (other.getIsLocalTime() != null && other.getIsLocalTime().equals(this.getIsLocalTime()) == false) return false; if (other.getQuietTime() == null ^ this.getQuietTime() == null) return false; if (other.getQuietTime() != null && other.getQuietTime().equals(this.getQuietTime()) == false) return false; if (other.getStartTime() == null ^ this.getStartTime() == null) return false; if (other.getStartTime() != null && other.getStartTime().equals(this.getStartTime()) == false) return false; if (other.getTimezone() == null ^ this.getTimezone() == null) return false; if (other.getTimezone() != null && other.getTimezone().equals(this.getTimezone()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getEndTime() == null) ? 0 : getEndTime().hashCode()); hashCode = prime * hashCode + ((getEventFilter() == null) ? 0 : getEventFilter().hashCode()); hashCode = prime * hashCode + ((getFrequency() == null) ? 0 : getFrequency().hashCode()); hashCode = prime * hashCode + ((getIsLocalTime() == null) ? 0 : getIsLocalTime().hashCode()); hashCode = prime * hashCode + ((getQuietTime() == null) ? 0 : getQuietTime().hashCode()); hashCode = prime * hashCode + ((getStartTime() == null) ? 0 : getStartTime().hashCode()); hashCode = prime * hashCode + ((getTimezone() == null) ? 0 : getTimezone().hashCode()); return hashCode; } @Override public Schedule clone() { try { return (Schedule) 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.pinpoint.model.transform.ScheduleMarshaller.getInstance().marshall(this, protocolMarshaller); } }