com.amazonaws.services.ec2.model.InstanceEventWindow Maven / Gradle / Ivy
Show all versions of aws-java-sdk-ec2 Show documentation
/*
* 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;
/**
*
* The event window.
*
*
* @see AWS API
* Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class InstanceEventWindow implements Serializable, Cloneable {
/**
*
* The ID of the event window.
*
*/
private String instanceEventWindowId;
/**
*
* One or more time ranges defined for the event window.
*
*/
private com.amazonaws.internal.SdkInternalList timeRanges;
/**
*
* The name of the event window.
*
*/
private String name;
/**
*
* The cron expression defined for the event window.
*
*/
private String cronExpression;
/**
*
* One or more targets associated with the event window.
*
*/
private InstanceEventWindowAssociationTarget associationTarget;
/**
*
* The current state of the event window.
*
*/
private String state;
/**
*
* The instance tags associated with the event window.
*
*/
private com.amazonaws.internal.SdkInternalList tags;
/**
*
* The ID of the event window.
*
*
* @param instanceEventWindowId
* The ID of the event window.
*/
public void setInstanceEventWindowId(String instanceEventWindowId) {
this.instanceEventWindowId = instanceEventWindowId;
}
/**
*
* The ID of the event window.
*
*
* @return The ID of the event window.
*/
public String getInstanceEventWindowId() {
return this.instanceEventWindowId;
}
/**
*
* The ID of the event window.
*
*
* @param instanceEventWindowId
* The ID of the event window.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public InstanceEventWindow withInstanceEventWindowId(String instanceEventWindowId) {
setInstanceEventWindowId(instanceEventWindowId);
return this;
}
/**
*
* One or more time ranges defined for the event window.
*
*
* @return One or more time ranges defined for the event window.
*/
public java.util.List getTimeRanges() {
if (timeRanges == null) {
timeRanges = new com.amazonaws.internal.SdkInternalList();
}
return timeRanges;
}
/**
*
* One or more time ranges defined for the event window.
*
*
* @param timeRanges
* One or more time ranges defined for the event window.
*/
public void setTimeRanges(java.util.Collection timeRanges) {
if (timeRanges == null) {
this.timeRanges = null;
return;
}
this.timeRanges = new com.amazonaws.internal.SdkInternalList(timeRanges);
}
/**
*
* One or more time ranges defined for the event window.
*
*
* NOTE: This method appends the values to the existing list (if any). Use
* {@link #setTimeRanges(java.util.Collection)} or {@link #withTimeRanges(java.util.Collection)} if you want to
* override the existing values.
*
*
* @param timeRanges
* One or more time ranges defined for the event window.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public InstanceEventWindow withTimeRanges(InstanceEventWindowTimeRange... timeRanges) {
if (this.timeRanges == null) {
setTimeRanges(new com.amazonaws.internal.SdkInternalList(timeRanges.length));
}
for (InstanceEventWindowTimeRange ele : timeRanges) {
this.timeRanges.add(ele);
}
return this;
}
/**
*
* One or more time ranges defined for the event window.
*
*
* @param timeRanges
* One or more time ranges defined for the event window.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public InstanceEventWindow withTimeRanges(java.util.Collection timeRanges) {
setTimeRanges(timeRanges);
return this;
}
/**
*
* The name of the event window.
*
*
* @param name
* The name of the event window.
*/
public void setName(String name) {
this.name = name;
}
/**
*
* The name of the event window.
*
*
* @return The name of the event window.
*/
public String getName() {
return this.name;
}
/**
*
* The name of the event window.
*
*
* @param name
* The name of the event window.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public InstanceEventWindow withName(String name) {
setName(name);
return this;
}
/**
*
* The cron expression defined for the event window.
*
*
* @param cronExpression
* The cron expression defined for the event window.
*/
public void setCronExpression(String cronExpression) {
this.cronExpression = cronExpression;
}
/**
*
* The cron expression defined for the event window.
*
*
* @return The cron expression defined for the event window.
*/
public String getCronExpression() {
return this.cronExpression;
}
/**
*
* The cron expression defined for the event window.
*
*
* @param cronExpression
* The cron expression defined for the event window.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public InstanceEventWindow withCronExpression(String cronExpression) {
setCronExpression(cronExpression);
return this;
}
/**
*
* One or more targets associated with the event window.
*
*
* @param associationTarget
* One or more targets associated with the event window.
*/
public void setAssociationTarget(InstanceEventWindowAssociationTarget associationTarget) {
this.associationTarget = associationTarget;
}
/**
*
* One or more targets associated with the event window.
*
*
* @return One or more targets associated with the event window.
*/
public InstanceEventWindowAssociationTarget getAssociationTarget() {
return this.associationTarget;
}
/**
*
* One or more targets associated with the event window.
*
*
* @param associationTarget
* One or more targets associated with the event window.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public InstanceEventWindow withAssociationTarget(InstanceEventWindowAssociationTarget associationTarget) {
setAssociationTarget(associationTarget);
return this;
}
/**
*
* The current state of the event window.
*
*
* @param state
* The current state of the event window.
* @see InstanceEventWindowState
*/
public void setState(String state) {
this.state = state;
}
/**
*
* The current state of the event window.
*
*
* @return The current state of the event window.
* @see InstanceEventWindowState
*/
public String getState() {
return this.state;
}
/**
*
* The current state of the event window.
*
*
* @param state
* The current state of the event window.
* @return Returns a reference to this object so that method calls can be chained together.
* @see InstanceEventWindowState
*/
public InstanceEventWindow withState(String state) {
setState(state);
return this;
}
/**
*
* The current state of the event window.
*
*
* @param state
* The current state of the event window.
* @return Returns a reference to this object so that method calls can be chained together.
* @see InstanceEventWindowState
*/
public InstanceEventWindow withState(InstanceEventWindowState state) {
this.state = state.toString();
return this;
}
/**
*
* The instance tags associated with the event window.
*
*
* @return The instance tags associated with the event window.
*/
public java.util.List getTags() {
if (tags == null) {
tags = new com.amazonaws.internal.SdkInternalList();
}
return tags;
}
/**
*
* The instance tags associated with the event window.
*
*
* @param tags
* The instance tags associated with the event window.
*/
public void setTags(java.util.Collection tags) {
if (tags == null) {
this.tags = null;
return;
}
this.tags = new com.amazonaws.internal.SdkInternalList(tags);
}
/**
*
* The instance tags associated with the event window.
*
*
* NOTE: This method appends the values to the existing list (if any). Use
* {@link #setTags(java.util.Collection)} or {@link #withTags(java.util.Collection)} if you want to override the
* existing values.
*
*
* @param tags
* The instance tags associated with the event window.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public InstanceEventWindow withTags(Tag... tags) {
if (this.tags == null) {
setTags(new com.amazonaws.internal.SdkInternalList(tags.length));
}
for (Tag ele : tags) {
this.tags.add(ele);
}
return this;
}
/**
*
* The instance tags associated with the event window.
*
*
* @param tags
* The instance tags associated with the event window.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public InstanceEventWindow withTags(java.util.Collection tags) {
setTags(tags);
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 (getInstanceEventWindowId() != null)
sb.append("InstanceEventWindowId: ").append(getInstanceEventWindowId()).append(",");
if (getTimeRanges() != null)
sb.append("TimeRanges: ").append(getTimeRanges()).append(",");
if (getName() != null)
sb.append("Name: ").append(getName()).append(",");
if (getCronExpression() != null)
sb.append("CronExpression: ").append(getCronExpression()).append(",");
if (getAssociationTarget() != null)
sb.append("AssociationTarget: ").append(getAssociationTarget()).append(",");
if (getState() != null)
sb.append("State: ").append(getState()).append(",");
if (getTags() != null)
sb.append("Tags: ").append(getTags());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof InstanceEventWindow == false)
return false;
InstanceEventWindow other = (InstanceEventWindow) obj;
if (other.getInstanceEventWindowId() == null ^ this.getInstanceEventWindowId() == null)
return false;
if (other.getInstanceEventWindowId() != null && other.getInstanceEventWindowId().equals(this.getInstanceEventWindowId()) == false)
return false;
if (other.getTimeRanges() == null ^ this.getTimeRanges() == null)
return false;
if (other.getTimeRanges() != null && other.getTimeRanges().equals(this.getTimeRanges()) == false)
return false;
if (other.getName() == null ^ this.getName() == null)
return false;
if (other.getName() != null && other.getName().equals(this.getName()) == false)
return false;
if (other.getCronExpression() == null ^ this.getCronExpression() == null)
return false;
if (other.getCronExpression() != null && other.getCronExpression().equals(this.getCronExpression()) == false)
return false;
if (other.getAssociationTarget() == null ^ this.getAssociationTarget() == null)
return false;
if (other.getAssociationTarget() != null && other.getAssociationTarget().equals(this.getAssociationTarget()) == false)
return false;
if (other.getState() == null ^ this.getState() == null)
return false;
if (other.getState() != null && other.getState().equals(this.getState()) == false)
return false;
if (other.getTags() == null ^ this.getTags() == null)
return false;
if (other.getTags() != null && other.getTags().equals(this.getTags()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getInstanceEventWindowId() == null) ? 0 : getInstanceEventWindowId().hashCode());
hashCode = prime * hashCode + ((getTimeRanges() == null) ? 0 : getTimeRanges().hashCode());
hashCode = prime * hashCode + ((getName() == null) ? 0 : getName().hashCode());
hashCode = prime * hashCode + ((getCronExpression() == null) ? 0 : getCronExpression().hashCode());
hashCode = prime * hashCode + ((getAssociationTarget() == null) ? 0 : getAssociationTarget().hashCode());
hashCode = prime * hashCode + ((getState() == null) ? 0 : getState().hashCode());
hashCode = prime * hashCode + ((getTags() == null) ? 0 : getTags().hashCode());
return hashCode;
}
@Override
public InstanceEventWindow clone() {
try {
return (InstanceEventWindow) super.clone();
} catch (CloneNotSupportedException e) {
throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e);
}
}
}