
com.amazonaws.services.wafv2.model.RuleGroupReferenceStatement Maven / Gradle / Ivy
/*
* Copyright 2017-2022 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.wafv2.model;
import java.io.Serializable;
import javax.annotation.Generated;
import com.amazonaws.protocol.StructuredPojo;
import com.amazonaws.protocol.ProtocolMarshaller;
/**
*
* A rule statement used to run the rules that are defined in a RuleGroup. To use this, create a rule group with
* your rules, then provide the ARN of the rule group in this statement.
*
*
* You cannot nest a RuleGroupReferenceStatement
, for example for use inside a NotStatement
or
* OrStatement
. You can only use a rule group reference statement at the top level inside a web ACL.
*
*
* @see AWS
* API Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class RuleGroupReferenceStatement implements Serializable, Cloneable, StructuredPojo {
/**
*
* The Amazon Resource Name (ARN) of the entity.
*
*/
private String aRN;
/**
*
* The rules in the referenced rule group whose actions are set to Count
. When you exclude a rule, WAF
* evaluates it exactly as it would if the rule action setting were Count
. This is a useful option for
* testing the rules in a rule group without modifying how they handle your web traffic.
*
*/
private java.util.List excludedRules;
/**
*
* The Amazon Resource Name (ARN) of the entity.
*
*
* @param aRN
* The Amazon Resource Name (ARN) of the entity.
*/
public void setARN(String aRN) {
this.aRN = aRN;
}
/**
*
* The Amazon Resource Name (ARN) of the entity.
*
*
* @return The Amazon Resource Name (ARN) of the entity.
*/
public String getARN() {
return this.aRN;
}
/**
*
* The Amazon Resource Name (ARN) of the entity.
*
*
* @param aRN
* The Amazon Resource Name (ARN) of the entity.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public RuleGroupReferenceStatement withARN(String aRN) {
setARN(aRN);
return this;
}
/**
*
* The rules in the referenced rule group whose actions are set to Count
. When you exclude a rule, WAF
* evaluates it exactly as it would if the rule action setting were Count
. This is a useful option for
* testing the rules in a rule group without modifying how they handle your web traffic.
*
*
* @return The rules in the referenced rule group whose actions are set to Count
. When you exclude a
* rule, WAF evaluates it exactly as it would if the rule action setting were Count
. This is a
* useful option for testing the rules in a rule group without modifying how they handle your web traffic.
*/
public java.util.List getExcludedRules() {
return excludedRules;
}
/**
*
* The rules in the referenced rule group whose actions are set to Count
. When you exclude a rule, WAF
* evaluates it exactly as it would if the rule action setting were Count
. This is a useful option for
* testing the rules in a rule group without modifying how they handle your web traffic.
*
*
* @param excludedRules
* The rules in the referenced rule group whose actions are set to Count
. When you exclude a
* rule, WAF evaluates it exactly as it would if the rule action setting were Count
. This is a
* useful option for testing the rules in a rule group without modifying how they handle your web traffic.
*/
public void setExcludedRules(java.util.Collection excludedRules) {
if (excludedRules == null) {
this.excludedRules = null;
return;
}
this.excludedRules = new java.util.ArrayList(excludedRules);
}
/**
*
* The rules in the referenced rule group whose actions are set to Count
. When you exclude a rule, WAF
* evaluates it exactly as it would if the rule action setting were Count
. This is a useful option for
* testing the rules in a rule group without modifying how they handle your web traffic.
*
*
* NOTE: This method appends the values to the existing list (if any). Use
* {@link #setExcludedRules(java.util.Collection)} or {@link #withExcludedRules(java.util.Collection)} if you want
* to override the existing values.
*
*
* @param excludedRules
* The rules in the referenced rule group whose actions are set to Count
. When you exclude a
* rule, WAF evaluates it exactly as it would if the rule action setting were Count
. This is a
* useful option for testing the rules in a rule group without modifying how they handle your web traffic.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public RuleGroupReferenceStatement withExcludedRules(ExcludedRule... excludedRules) {
if (this.excludedRules == null) {
setExcludedRules(new java.util.ArrayList(excludedRules.length));
}
for (ExcludedRule ele : excludedRules) {
this.excludedRules.add(ele);
}
return this;
}
/**
*
* The rules in the referenced rule group whose actions are set to Count
. When you exclude a rule, WAF
* evaluates it exactly as it would if the rule action setting were Count
. This is a useful option for
* testing the rules in a rule group without modifying how they handle your web traffic.
*
*
* @param excludedRules
* The rules in the referenced rule group whose actions are set to Count
. When you exclude a
* rule, WAF evaluates it exactly as it would if the rule action setting were Count
. This is a
* useful option for testing the rules in a rule group without modifying how they handle your web traffic.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public RuleGroupReferenceStatement withExcludedRules(java.util.Collection excludedRules) {
setExcludedRules(excludedRules);
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 (getARN() != null)
sb.append("ARN: ").append(getARN()).append(",");
if (getExcludedRules() != null)
sb.append("ExcludedRules: ").append(getExcludedRules());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof RuleGroupReferenceStatement == false)
return false;
RuleGroupReferenceStatement other = (RuleGroupReferenceStatement) obj;
if (other.getARN() == null ^ this.getARN() == null)
return false;
if (other.getARN() != null && other.getARN().equals(this.getARN()) == false)
return false;
if (other.getExcludedRules() == null ^ this.getExcludedRules() == null)
return false;
if (other.getExcludedRules() != null && other.getExcludedRules().equals(this.getExcludedRules()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getARN() == null) ? 0 : getARN().hashCode());
hashCode = prime * hashCode + ((getExcludedRules() == null) ? 0 : getExcludedRules().hashCode());
return hashCode;
}
@Override
public RuleGroupReferenceStatement clone() {
try {
return (RuleGroupReferenceStatement) 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.wafv2.model.transform.RuleGroupReferenceStatementMarshaller.getInstance().marshall(this, protocolMarshaller);
}
}