All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.amazonaws.services.securityhub.model.RuleGroupSource Maven / Gradle / Ivy

Go to download

The AWS Java SDK for AWS SecurityHub module holds the client classes that are used for communicating with AWS SecurityHub Service

There is a newer version: 1.12.772
Show 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.securityhub.model;

import java.io.Serializable;
import javax.annotation.Generated;
import com.amazonaws.protocol.StructuredPojo;
import com.amazonaws.protocol.ProtocolMarshaller;

/**
 * 

* The rules and actions for the rule group. *

* * @see AWS API * Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class RuleGroupSource implements Serializable, Cloneable, StructuredPojo { /** *

* Stateful inspection criteria for a domain list rule group. A domain list rule group determines access by specific * protocols to specific domains. *

*/ private RuleGroupSourceListDetails rulesSourceList; /** *

* Stateful inspection criteria, provided in Suricata compatible intrusion prevention system (IPS) rules. *

*/ private String rulesString; /** *

* Suricata rule specifications. *

*/ private java.util.List statefulRules; /** *

* The stateless rules and custom actions used by a stateless rule group. *

*/ private RuleGroupSourceStatelessRulesAndCustomActionsDetails statelessRulesAndCustomActions; /** *

* Stateful inspection criteria for a domain list rule group. A domain list rule group determines access by specific * protocols to specific domains. *

* * @param rulesSourceList * Stateful inspection criteria for a domain list rule group. A domain list rule group determines access by * specific protocols to specific domains. */ public void setRulesSourceList(RuleGroupSourceListDetails rulesSourceList) { this.rulesSourceList = rulesSourceList; } /** *

* Stateful inspection criteria for a domain list rule group. A domain list rule group determines access by specific * protocols to specific domains. *

* * @return Stateful inspection criteria for a domain list rule group. A domain list rule group determines access by * specific protocols to specific domains. */ public RuleGroupSourceListDetails getRulesSourceList() { return this.rulesSourceList; } /** *

* Stateful inspection criteria for a domain list rule group. A domain list rule group determines access by specific * protocols to specific domains. *

* * @param rulesSourceList * Stateful inspection criteria for a domain list rule group. A domain list rule group determines access by * specific protocols to specific domains. * @return Returns a reference to this object so that method calls can be chained together. */ public RuleGroupSource withRulesSourceList(RuleGroupSourceListDetails rulesSourceList) { setRulesSourceList(rulesSourceList); return this; } /** *

* Stateful inspection criteria, provided in Suricata compatible intrusion prevention system (IPS) rules. *

* * @param rulesString * Stateful inspection criteria, provided in Suricata compatible intrusion prevention system (IPS) rules. */ public void setRulesString(String rulesString) { this.rulesString = rulesString; } /** *

* Stateful inspection criteria, provided in Suricata compatible intrusion prevention system (IPS) rules. *

* * @return Stateful inspection criteria, provided in Suricata compatible intrusion prevention system (IPS) rules. */ public String getRulesString() { return this.rulesString; } /** *

* Stateful inspection criteria, provided in Suricata compatible intrusion prevention system (IPS) rules. *

* * @param rulesString * Stateful inspection criteria, provided in Suricata compatible intrusion prevention system (IPS) rules. * @return Returns a reference to this object so that method calls can be chained together. */ public RuleGroupSource withRulesString(String rulesString) { setRulesString(rulesString); return this; } /** *

* Suricata rule specifications. *

* * @return Suricata rule specifications. */ public java.util.List getStatefulRules() { return statefulRules; } /** *

* Suricata rule specifications. *

* * @param statefulRules * Suricata rule specifications. */ public void setStatefulRules(java.util.Collection statefulRules) { if (statefulRules == null) { this.statefulRules = null; return; } this.statefulRules = new java.util.ArrayList(statefulRules); } /** *

* Suricata rule specifications. *

*

* NOTE: This method appends the values to the existing list (if any). Use * {@link #setStatefulRules(java.util.Collection)} or {@link #withStatefulRules(java.util.Collection)} if you want * to override the existing values. *

* * @param statefulRules * Suricata rule specifications. * @return Returns a reference to this object so that method calls can be chained together. */ public RuleGroupSource withStatefulRules(RuleGroupSourceStatefulRulesDetails... statefulRules) { if (this.statefulRules == null) { setStatefulRules(new java.util.ArrayList(statefulRules.length)); } for (RuleGroupSourceStatefulRulesDetails ele : statefulRules) { this.statefulRules.add(ele); } return this; } /** *

* Suricata rule specifications. *

* * @param statefulRules * Suricata rule specifications. * @return Returns a reference to this object so that method calls can be chained together. */ public RuleGroupSource withStatefulRules(java.util.Collection statefulRules) { setStatefulRules(statefulRules); return this; } /** *

* The stateless rules and custom actions used by a stateless rule group. *

* * @param statelessRulesAndCustomActions * The stateless rules and custom actions used by a stateless rule group. */ public void setStatelessRulesAndCustomActions(RuleGroupSourceStatelessRulesAndCustomActionsDetails statelessRulesAndCustomActions) { this.statelessRulesAndCustomActions = statelessRulesAndCustomActions; } /** *

* The stateless rules and custom actions used by a stateless rule group. *

* * @return The stateless rules and custom actions used by a stateless rule group. */ public RuleGroupSourceStatelessRulesAndCustomActionsDetails getStatelessRulesAndCustomActions() { return this.statelessRulesAndCustomActions; } /** *

* The stateless rules and custom actions used by a stateless rule group. *

* * @param statelessRulesAndCustomActions * The stateless rules and custom actions used by a stateless rule group. * @return Returns a reference to this object so that method calls can be chained together. */ public RuleGroupSource withStatelessRulesAndCustomActions(RuleGroupSourceStatelessRulesAndCustomActionsDetails statelessRulesAndCustomActions) { setStatelessRulesAndCustomActions(statelessRulesAndCustomActions); 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 (getRulesSourceList() != null) sb.append("RulesSourceList: ").append(getRulesSourceList()).append(","); if (getRulesString() != null) sb.append("RulesString: ").append(getRulesString()).append(","); if (getStatefulRules() != null) sb.append("StatefulRules: ").append(getStatefulRules()).append(","); if (getStatelessRulesAndCustomActions() != null) sb.append("StatelessRulesAndCustomActions: ").append(getStatelessRulesAndCustomActions()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof RuleGroupSource == false) return false; RuleGroupSource other = (RuleGroupSource) obj; if (other.getRulesSourceList() == null ^ this.getRulesSourceList() == null) return false; if (other.getRulesSourceList() != null && other.getRulesSourceList().equals(this.getRulesSourceList()) == false) return false; if (other.getRulesString() == null ^ this.getRulesString() == null) return false; if (other.getRulesString() != null && other.getRulesString().equals(this.getRulesString()) == false) return false; if (other.getStatefulRules() == null ^ this.getStatefulRules() == null) return false; if (other.getStatefulRules() != null && other.getStatefulRules().equals(this.getStatefulRules()) == false) return false; if (other.getStatelessRulesAndCustomActions() == null ^ this.getStatelessRulesAndCustomActions() == null) return false; if (other.getStatelessRulesAndCustomActions() != null && other.getStatelessRulesAndCustomActions().equals(this.getStatelessRulesAndCustomActions()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getRulesSourceList() == null) ? 0 : getRulesSourceList().hashCode()); hashCode = prime * hashCode + ((getRulesString() == null) ? 0 : getRulesString().hashCode()); hashCode = prime * hashCode + ((getStatefulRules() == null) ? 0 : getStatefulRules().hashCode()); hashCode = prime * hashCode + ((getStatelessRulesAndCustomActions() == null) ? 0 : getStatelessRulesAndCustomActions().hashCode()); return hashCode; } @Override public RuleGroupSource clone() { try { return (RuleGroupSource) 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.securityhub.model.transform.RuleGroupSourceMarshaller.getInstance().marshall(this, protocolMarshaller); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy