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

* Describes an add-on that is enabled for an Amazon Lightsail resource. *

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

* The name of the add-on. *

*/ private String name; /** *

* The status of the add-on. *

*/ private String status; /** *

* The daily time when an automatic snapshot is created. *

*

* The time shown is in HH:00 format, and in Coordinated Universal Time (UTC). *

*

* The snapshot is automatically created between the time shown and up to 45 minutes after. *

*/ private String snapshotTimeOfDay; /** *

* The next daily time an automatic snapshot will be created. *

*

* The time shown is in HH:00 format, and in Coordinated Universal Time (UTC). *

*

* The snapshot is automatically created between the time shown and up to 45 minutes after. *

*/ private String nextSnapshotTimeOfDay; /** *

* The trigger threshold of the action. *

* *

* This add-on only applies to Lightsail for Research resources. *

*
*/ private String threshold; /** *

* The amount of idle time in minutes after which your virtual computer will automatically stop. *

* *

* This add-on only applies to Lightsail for Research resources. *

*
*/ private String duration; /** *

* The name of the add-on. *

* * @param name * The name of the add-on. */ public void setName(String name) { this.name = name; } /** *

* The name of the add-on. *

* * @return The name of the add-on. */ public String getName() { return this.name; } /** *

* The name of the add-on. *

* * @param name * The name of the add-on. * @return Returns a reference to this object so that method calls can be chained together. */ public AddOn withName(String name) { setName(name); return this; } /** *

* The status of the add-on. *

* * @param status * The status of the add-on. */ public void setStatus(String status) { this.status = status; } /** *

* The status of the add-on. *

* * @return The status of the add-on. */ public String getStatus() { return this.status; } /** *

* The status of the add-on. *

* * @param status * The status of the add-on. * @return Returns a reference to this object so that method calls can be chained together. */ public AddOn withStatus(String status) { setStatus(status); return this; } /** *

* The daily time when an automatic snapshot is created. *

*

* The time shown is in HH:00 format, and in Coordinated Universal Time (UTC). *

*

* The snapshot is automatically created between the time shown and up to 45 minutes after. *

* * @param snapshotTimeOfDay * The daily time when an automatic snapshot is created.

*

* The time shown is in HH:00 format, and in Coordinated Universal Time (UTC). *

*

* The snapshot is automatically created between the time shown and up to 45 minutes after. */ public void setSnapshotTimeOfDay(String snapshotTimeOfDay) { this.snapshotTimeOfDay = snapshotTimeOfDay; } /** *

* The daily time when an automatic snapshot is created. *

*

* The time shown is in HH:00 format, and in Coordinated Universal Time (UTC). *

*

* The snapshot is automatically created between the time shown and up to 45 minutes after. *

* * @return The daily time when an automatic snapshot is created.

*

* The time shown is in HH:00 format, and in Coordinated Universal Time (UTC). *

*

* The snapshot is automatically created between the time shown and up to 45 minutes after. */ public String getSnapshotTimeOfDay() { return this.snapshotTimeOfDay; } /** *

* The daily time when an automatic snapshot is created. *

*

* The time shown is in HH:00 format, and in Coordinated Universal Time (UTC). *

*

* The snapshot is automatically created between the time shown and up to 45 minutes after. *

* * @param snapshotTimeOfDay * The daily time when an automatic snapshot is created.

*

* The time shown is in HH:00 format, and in Coordinated Universal Time (UTC). *

*

* The snapshot is automatically created between the time shown and up to 45 minutes after. * @return Returns a reference to this object so that method calls can be chained together. */ public AddOn withSnapshotTimeOfDay(String snapshotTimeOfDay) { setSnapshotTimeOfDay(snapshotTimeOfDay); return this; } /** *

* The next daily time an automatic snapshot will be created. *

*

* The time shown is in HH:00 format, and in Coordinated Universal Time (UTC). *

*

* The snapshot is automatically created between the time shown and up to 45 minutes after. *

* * @param nextSnapshotTimeOfDay * The next daily time an automatic snapshot will be created.

*

* The time shown is in HH:00 format, and in Coordinated Universal Time (UTC). *

*

* The snapshot is automatically created between the time shown and up to 45 minutes after. */ public void setNextSnapshotTimeOfDay(String nextSnapshotTimeOfDay) { this.nextSnapshotTimeOfDay = nextSnapshotTimeOfDay; } /** *

* The next daily time an automatic snapshot will be created. *

*

* The time shown is in HH:00 format, and in Coordinated Universal Time (UTC). *

*

* The snapshot is automatically created between the time shown and up to 45 minutes after. *

* * @return The next daily time an automatic snapshot will be created.

*

* The time shown is in HH:00 format, and in Coordinated Universal Time (UTC). *

*

* The snapshot is automatically created between the time shown and up to 45 minutes after. */ public String getNextSnapshotTimeOfDay() { return this.nextSnapshotTimeOfDay; } /** *

* The next daily time an automatic snapshot will be created. *

*

* The time shown is in HH:00 format, and in Coordinated Universal Time (UTC). *

*

* The snapshot is automatically created between the time shown and up to 45 minutes after. *

* * @param nextSnapshotTimeOfDay * The next daily time an automatic snapshot will be created.

*

* The time shown is in HH:00 format, and in Coordinated Universal Time (UTC). *

*

* The snapshot is automatically created between the time shown and up to 45 minutes after. * @return Returns a reference to this object so that method calls can be chained together. */ public AddOn withNextSnapshotTimeOfDay(String nextSnapshotTimeOfDay) { setNextSnapshotTimeOfDay(nextSnapshotTimeOfDay); return this; } /** *

* The trigger threshold of the action. *

* *

* This add-on only applies to Lightsail for Research resources. *

*
* * @param threshold * The trigger threshold of the action.

*

* This add-on only applies to Lightsail for Research resources. *

*/ public void setThreshold(String threshold) { this.threshold = threshold; } /** *

* The trigger threshold of the action. *

* *

* This add-on only applies to Lightsail for Research resources. *

*
* * @return The trigger threshold of the action.

*

* This add-on only applies to Lightsail for Research resources. *

*/ public String getThreshold() { return this.threshold; } /** *

* The trigger threshold of the action. *

* *

* This add-on only applies to Lightsail for Research resources. *

*
* * @param threshold * The trigger threshold of the action.

*

* This add-on only applies to Lightsail for Research resources. *

* @return Returns a reference to this object so that method calls can be chained together. */ public AddOn withThreshold(String threshold) { setThreshold(threshold); return this; } /** *

* The amount of idle time in minutes after which your virtual computer will automatically stop. *

* *

* This add-on only applies to Lightsail for Research resources. *

*
* * @param duration * The amount of idle time in minutes after which your virtual computer will automatically stop.

* *

* This add-on only applies to Lightsail for Research resources. *

*/ public void setDuration(String duration) { this.duration = duration; } /** *

* The amount of idle time in minutes after which your virtual computer will automatically stop. *

* *

* This add-on only applies to Lightsail for Research resources. *

*
* * @return The amount of idle time in minutes after which your virtual computer will automatically stop.

* *

* This add-on only applies to Lightsail for Research resources. *

*/ public String getDuration() { return this.duration; } /** *

* The amount of idle time in minutes after which your virtual computer will automatically stop. *

* *

* This add-on only applies to Lightsail for Research resources. *

*
* * @param duration * The amount of idle time in minutes after which your virtual computer will automatically stop.

* *

* This add-on only applies to Lightsail for Research resources. *

* @return Returns a reference to this object so that method calls can be chained together. */ public AddOn withDuration(String duration) { setDuration(duration); 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 (getName() != null) sb.append("Name: ").append(getName()).append(","); if (getStatus() != null) sb.append("Status: ").append(getStatus()).append(","); if (getSnapshotTimeOfDay() != null) sb.append("SnapshotTimeOfDay: ").append(getSnapshotTimeOfDay()).append(","); if (getNextSnapshotTimeOfDay() != null) sb.append("NextSnapshotTimeOfDay: ").append(getNextSnapshotTimeOfDay()).append(","); if (getThreshold() != null) sb.append("Threshold: ").append(getThreshold()).append(","); if (getDuration() != null) sb.append("Duration: ").append(getDuration()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof AddOn == false) return false; AddOn other = (AddOn) obj; if (other.getName() == null ^ this.getName() == null) return false; if (other.getName() != null && other.getName().equals(this.getName()) == false) return false; if (other.getStatus() == null ^ this.getStatus() == null) return false; if (other.getStatus() != null && other.getStatus().equals(this.getStatus()) == false) return false; if (other.getSnapshotTimeOfDay() == null ^ this.getSnapshotTimeOfDay() == null) return false; if (other.getSnapshotTimeOfDay() != null && other.getSnapshotTimeOfDay().equals(this.getSnapshotTimeOfDay()) == false) return false; if (other.getNextSnapshotTimeOfDay() == null ^ this.getNextSnapshotTimeOfDay() == null) return false; if (other.getNextSnapshotTimeOfDay() != null && other.getNextSnapshotTimeOfDay().equals(this.getNextSnapshotTimeOfDay()) == false) return false; if (other.getThreshold() == null ^ this.getThreshold() == null) return false; if (other.getThreshold() != null && other.getThreshold().equals(this.getThreshold()) == false) return false; if (other.getDuration() == null ^ this.getDuration() == null) return false; if (other.getDuration() != null && other.getDuration().equals(this.getDuration()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getName() == null) ? 0 : getName().hashCode()); hashCode = prime * hashCode + ((getStatus() == null) ? 0 : getStatus().hashCode()); hashCode = prime * hashCode + ((getSnapshotTimeOfDay() == null) ? 0 : getSnapshotTimeOfDay().hashCode()); hashCode = prime * hashCode + ((getNextSnapshotTimeOfDay() == null) ? 0 : getNextSnapshotTimeOfDay().hashCode()); hashCode = prime * hashCode + ((getThreshold() == null) ? 0 : getThreshold().hashCode()); hashCode = prime * hashCode + ((getDuration() == null) ? 0 : getDuration().hashCode()); return hashCode; } @Override public AddOn clone() { try { return (AddOn) 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.lightsail.model.transform.AddOnMarshaller.getInstance().marshall(this, protocolMarshaller); } }