/* * 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* 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* 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* 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* 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* 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* 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* The instance tags associated with the event window. *
* * @param tags * The instance tags associated with the event window. */ public void setTags(java.util.Collection* 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* 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