com.amazonaws.services.ec2.model.InstanceEventWindowAssociationRequest Maven / Gradle / Ivy
Show all versions of aws-java-sdk-ec2 Show documentation
/*
* Copyright 2019-2024 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;
/**
*
* One or more targets associated with the specified event window. Only one type of target (instance ID, instance
* tag, or Dedicated Host ID) can be associated with an event window.
*
*
* @see AWS API Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class InstanceEventWindowAssociationRequest implements Serializable, Cloneable {
/**
*
* The IDs of the instances to associate with the event window. If the instance is on a Dedicated Host, you can't
* specify the Instance ID parameter; you must use the Dedicated Host ID parameter.
*
*/
private com.amazonaws.internal.SdkInternalList instanceIds;
/**
*
* The instance tags to associate with the event window. Any instances associated with the tags will be associated
* with the event window.
*
*/
private com.amazonaws.internal.SdkInternalList instanceTags;
/**
*
* The IDs of the Dedicated Hosts to associate with the event window.
*
*/
private com.amazonaws.internal.SdkInternalList dedicatedHostIds;
/**
*
* The IDs of the instances to associate with the event window. If the instance is on a Dedicated Host, you can't
* specify the Instance ID parameter; you must use the Dedicated Host ID parameter.
*
*
* @return The IDs of the instances to associate with the event window. If the instance is on a Dedicated Host, you
* can't specify the Instance ID parameter; you must use the Dedicated Host ID parameter.
*/
public java.util.List getInstanceIds() {
if (instanceIds == null) {
instanceIds = new com.amazonaws.internal.SdkInternalList();
}
return instanceIds;
}
/**
*
* The IDs of the instances to associate with the event window. If the instance is on a Dedicated Host, you can't
* specify the Instance ID parameter; you must use the Dedicated Host ID parameter.
*
*
* @param instanceIds
* The IDs of the instances to associate with the event window. If the instance is on a Dedicated Host, you
* can't specify the Instance ID parameter; you must use the Dedicated Host ID parameter.
*/
public void setInstanceIds(java.util.Collection instanceIds) {
if (instanceIds == null) {
this.instanceIds = null;
return;
}
this.instanceIds = new com.amazonaws.internal.SdkInternalList(instanceIds);
}
/**
*
* The IDs of the instances to associate with the event window. If the instance is on a Dedicated Host, you can't
* specify the Instance ID parameter; you must use the Dedicated Host ID parameter.
*
*
* NOTE: This method appends the values to the existing list (if any). Use
* {@link #setInstanceIds(java.util.Collection)} or {@link #withInstanceIds(java.util.Collection)} if you want to
* override the existing values.
*
*
* @param instanceIds
* The IDs of the instances to associate with the event window. If the instance is on a Dedicated Host, you
* can't specify the Instance ID parameter; you must use the Dedicated Host ID parameter.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public InstanceEventWindowAssociationRequest withInstanceIds(String... instanceIds) {
if (this.instanceIds == null) {
setInstanceIds(new com.amazonaws.internal.SdkInternalList(instanceIds.length));
}
for (String ele : instanceIds) {
this.instanceIds.add(ele);
}
return this;
}
/**
*
* The IDs of the instances to associate with the event window. If the instance is on a Dedicated Host, you can't
* specify the Instance ID parameter; you must use the Dedicated Host ID parameter.
*
*
* @param instanceIds
* The IDs of the instances to associate with the event window. If the instance is on a Dedicated Host, you
* can't specify the Instance ID parameter; you must use the Dedicated Host ID parameter.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public InstanceEventWindowAssociationRequest withInstanceIds(java.util.Collection instanceIds) {
setInstanceIds(instanceIds);
return this;
}
/**
*
* The instance tags to associate with the event window. Any instances associated with the tags will be associated
* with the event window.
*
*
* @return The instance tags to associate with the event window. Any instances associated with the tags will be
* associated with the event window.
*/
public java.util.List getInstanceTags() {
if (instanceTags == null) {
instanceTags = new com.amazonaws.internal.SdkInternalList();
}
return instanceTags;
}
/**
*
* The instance tags to associate with the event window. Any instances associated with the tags will be associated
* with the event window.
*
*
* @param instanceTags
* The instance tags to associate with the event window. Any instances associated with the tags will be
* associated with the event window.
*/
public void setInstanceTags(java.util.Collection instanceTags) {
if (instanceTags == null) {
this.instanceTags = null;
return;
}
this.instanceTags = new com.amazonaws.internal.SdkInternalList(instanceTags);
}
/**
*
* The instance tags to associate with the event window. Any instances associated with the tags will be associated
* with the event window.
*
*
* NOTE: This method appends the values to the existing list (if any). Use
* {@link #setInstanceTags(java.util.Collection)} or {@link #withInstanceTags(java.util.Collection)} if you want to
* override the existing values.
*
*
* @param instanceTags
* The instance tags to associate with the event window. Any instances associated with the tags will be
* associated with the event window.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public InstanceEventWindowAssociationRequest withInstanceTags(Tag... instanceTags) {
if (this.instanceTags == null) {
setInstanceTags(new com.amazonaws.internal.SdkInternalList(instanceTags.length));
}
for (Tag ele : instanceTags) {
this.instanceTags.add(ele);
}
return this;
}
/**
*
* The instance tags to associate with the event window. Any instances associated with the tags will be associated
* with the event window.
*
*
* @param instanceTags
* The instance tags to associate with the event window. Any instances associated with the tags will be
* associated with the event window.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public InstanceEventWindowAssociationRequest withInstanceTags(java.util.Collection instanceTags) {
setInstanceTags(instanceTags);
return this;
}
/**
*
* The IDs of the Dedicated Hosts to associate with the event window.
*
*
* @return The IDs of the Dedicated Hosts to associate with the event window.
*/
public java.util.List getDedicatedHostIds() {
if (dedicatedHostIds == null) {
dedicatedHostIds = new com.amazonaws.internal.SdkInternalList();
}
return dedicatedHostIds;
}
/**
*
* The IDs of the Dedicated Hosts to associate with the event window.
*
*
* @param dedicatedHostIds
* The IDs of the Dedicated Hosts to associate with the event window.
*/
public void setDedicatedHostIds(java.util.Collection dedicatedHostIds) {
if (dedicatedHostIds == null) {
this.dedicatedHostIds = null;
return;
}
this.dedicatedHostIds = new com.amazonaws.internal.SdkInternalList(dedicatedHostIds);
}
/**
*
* The IDs of the Dedicated Hosts to associate with the event window.
*
*
* NOTE: This method appends the values to the existing list (if any). Use
* {@link #setDedicatedHostIds(java.util.Collection)} or {@link #withDedicatedHostIds(java.util.Collection)} if you
* want to override the existing values.
*
*
* @param dedicatedHostIds
* The IDs of the Dedicated Hosts to associate with the event window.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public InstanceEventWindowAssociationRequest withDedicatedHostIds(String... dedicatedHostIds) {
if (this.dedicatedHostIds == null) {
setDedicatedHostIds(new com.amazonaws.internal.SdkInternalList(dedicatedHostIds.length));
}
for (String ele : dedicatedHostIds) {
this.dedicatedHostIds.add(ele);
}
return this;
}
/**
*
* The IDs of the Dedicated Hosts to associate with the event window.
*
*
* @param dedicatedHostIds
* The IDs of the Dedicated Hosts to associate with the event window.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public InstanceEventWindowAssociationRequest withDedicatedHostIds(java.util.Collection dedicatedHostIds) {
setDedicatedHostIds(dedicatedHostIds);
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 (getInstanceIds() != null)
sb.append("InstanceIds: ").append(getInstanceIds()).append(",");
if (getInstanceTags() != null)
sb.append("InstanceTags: ").append(getInstanceTags()).append(",");
if (getDedicatedHostIds() != null)
sb.append("DedicatedHostIds: ").append(getDedicatedHostIds());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof InstanceEventWindowAssociationRequest == false)
return false;
InstanceEventWindowAssociationRequest other = (InstanceEventWindowAssociationRequest) obj;
if (other.getInstanceIds() == null ^ this.getInstanceIds() == null)
return false;
if (other.getInstanceIds() != null && other.getInstanceIds().equals(this.getInstanceIds()) == false)
return false;
if (other.getInstanceTags() == null ^ this.getInstanceTags() == null)
return false;
if (other.getInstanceTags() != null && other.getInstanceTags().equals(this.getInstanceTags()) == false)
return false;
if (other.getDedicatedHostIds() == null ^ this.getDedicatedHostIds() == null)
return false;
if (other.getDedicatedHostIds() != null && other.getDedicatedHostIds().equals(this.getDedicatedHostIds()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getInstanceIds() == null) ? 0 : getInstanceIds().hashCode());
hashCode = prime * hashCode + ((getInstanceTags() == null) ? 0 : getInstanceTags().hashCode());
hashCode = prime * hashCode + ((getDedicatedHostIds() == null) ? 0 : getDedicatedHostIds().hashCode());
return hashCode;
}
@Override
public InstanceEventWindowAssociationRequest clone() {
try {
return (InstanceEventWindowAssociationRequest) super.clone();
} catch (CloneNotSupportedException e) {
throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e);
}
}
}