com.amazonaws.services.ec2.model.RuleGroupRuleOptionsPair Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aws-java-sdk-ec2 Show documentation
Show all versions of aws-java-sdk-ec2 Show documentation
The AWS Java SDK for Amazon EC2 module holds the client classes that are used for communicating with Amazon EC2 Service
The newest version!
/*
* 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;
/**
*
* Describes the rule options for a stateful rule group.
*
*
* @see AWS API
* Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class RuleGroupRuleOptionsPair implements Serializable, Cloneable {
/**
*
* The ARN of the rule group.
*
*/
private String ruleGroupArn;
/**
*
* The rule options.
*
*/
private com.amazonaws.internal.SdkInternalList ruleOptions;
/**
*
* The ARN of the rule group.
*
*
* @param ruleGroupArn
* The ARN of the rule group.
*/
public void setRuleGroupArn(String ruleGroupArn) {
this.ruleGroupArn = ruleGroupArn;
}
/**
*
* The ARN of the rule group.
*
*
* @return The ARN of the rule group.
*/
public String getRuleGroupArn() {
return this.ruleGroupArn;
}
/**
*
* The ARN of the rule group.
*
*
* @param ruleGroupArn
* The ARN of the rule group.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public RuleGroupRuleOptionsPair withRuleGroupArn(String ruleGroupArn) {
setRuleGroupArn(ruleGroupArn);
return this;
}
/**
*
* The rule options.
*
*
* @return The rule options.
*/
public java.util.List getRuleOptions() {
if (ruleOptions == null) {
ruleOptions = new com.amazonaws.internal.SdkInternalList();
}
return ruleOptions;
}
/**
*
* The rule options.
*
*
* @param ruleOptions
* The rule options.
*/
public void setRuleOptions(java.util.Collection ruleOptions) {
if (ruleOptions == null) {
this.ruleOptions = null;
return;
}
this.ruleOptions = new com.amazonaws.internal.SdkInternalList(ruleOptions);
}
/**
*
* The rule options.
*
*
* NOTE: This method appends the values to the existing list (if any). Use
* {@link #setRuleOptions(java.util.Collection)} or {@link #withRuleOptions(java.util.Collection)} if you want to
* override the existing values.
*
*
* @param ruleOptions
* The rule options.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public RuleGroupRuleOptionsPair withRuleOptions(RuleOption... ruleOptions) {
if (this.ruleOptions == null) {
setRuleOptions(new com.amazonaws.internal.SdkInternalList(ruleOptions.length));
}
for (RuleOption ele : ruleOptions) {
this.ruleOptions.add(ele);
}
return this;
}
/**
*
* The rule options.
*
*
* @param ruleOptions
* The rule options.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public RuleGroupRuleOptionsPair withRuleOptions(java.util.Collection ruleOptions) {
setRuleOptions(ruleOptions);
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 (getRuleGroupArn() != null)
sb.append("RuleGroupArn: ").append(getRuleGroupArn()).append(",");
if (getRuleOptions() != null)
sb.append("RuleOptions: ").append(getRuleOptions());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof RuleGroupRuleOptionsPair == false)
return false;
RuleGroupRuleOptionsPair other = (RuleGroupRuleOptionsPair) obj;
if (other.getRuleGroupArn() == null ^ this.getRuleGroupArn() == null)
return false;
if (other.getRuleGroupArn() != null && other.getRuleGroupArn().equals(this.getRuleGroupArn()) == false)
return false;
if (other.getRuleOptions() == null ^ this.getRuleOptions() == null)
return false;
if (other.getRuleOptions() != null && other.getRuleOptions().equals(this.getRuleOptions()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getRuleGroupArn() == null) ? 0 : getRuleGroupArn().hashCode());
hashCode = prime * hashCode + ((getRuleOptions() == null) ? 0 : getRuleOptions().hashCode());
return hashCode;
}
@Override
public RuleGroupRuleOptionsPair clone() {
try {
return (RuleGroupRuleOptionsPair) super.clone();
} catch (CloneNotSupportedException e) {
throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e);
}
}
}