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

com.amazonaws.services.fms.model.StatefulRuleGroup Maven / Gradle / Ivy

Go to download

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

There is a newer version: 1.12.780
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.fms.model;

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

/**
 * 

* Network Firewall stateful rule group, used in a NetworkFirewallPolicyDescription. *

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

* The name of the rule group. *

*/ private String ruleGroupName; /** *

* The resource ID of the rule group. *

*/ private String resourceId; /** *

* An integer setting that indicates the order in which to run the stateful rule groups in a single Network Firewall * firewall policy. This setting only applies to firewall policies that specify the STRICT_ORDER rule * order in the stateful engine options settings. *

*

* Network Firewall evalutes each stateful rule group against a packet starting with the group that has the lowest * priority setting. You must ensure that the priority settings are unique within each policy. For information about *

*

* You can change the priority settings of your rule groups at any time. To make it easier to insert rule groups * later, number them so there's a wide range in between, for example use 100, 200, and so on. *

*/ private Integer priority; /** *

* The action that allows the policy owner to override the behavior of the rule group within a policy. *

*/ private NetworkFirewallStatefulRuleGroupOverride override; /** *

* The name of the rule group. *

* * @param ruleGroupName * The name of the rule group. */ public void setRuleGroupName(String ruleGroupName) { this.ruleGroupName = ruleGroupName; } /** *

* The name of the rule group. *

* * @return The name of the rule group. */ public String getRuleGroupName() { return this.ruleGroupName; } /** *

* The name of the rule group. *

* * @param ruleGroupName * The name of the rule group. * @return Returns a reference to this object so that method calls can be chained together. */ public StatefulRuleGroup withRuleGroupName(String ruleGroupName) { setRuleGroupName(ruleGroupName); return this; } /** *

* The resource ID of the rule group. *

* * @param resourceId * The resource ID of the rule group. */ public void setResourceId(String resourceId) { this.resourceId = resourceId; } /** *

* The resource ID of the rule group. *

* * @return The resource ID of the rule group. */ public String getResourceId() { return this.resourceId; } /** *

* The resource ID of the rule group. *

* * @param resourceId * The resource ID of the rule group. * @return Returns a reference to this object so that method calls can be chained together. */ public StatefulRuleGroup withResourceId(String resourceId) { setResourceId(resourceId); return this; } /** *

* An integer setting that indicates the order in which to run the stateful rule groups in a single Network Firewall * firewall policy. This setting only applies to firewall policies that specify the STRICT_ORDER rule * order in the stateful engine options settings. *

*

* Network Firewall evalutes each stateful rule group against a packet starting with the group that has the lowest * priority setting. You must ensure that the priority settings are unique within each policy. For information about *

*

* You can change the priority settings of your rule groups at any time. To make it easier to insert rule groups * later, number them so there's a wide range in between, for example use 100, 200, and so on. *

* * @param priority * An integer setting that indicates the order in which to run the stateful rule groups in a single Network * Firewall firewall policy. This setting only applies to firewall policies that specify the * STRICT_ORDER rule order in the stateful engine options settings.

*

* Network Firewall evalutes each stateful rule group against a packet starting with the group that has the * lowest priority setting. You must ensure that the priority settings are unique within each policy. For * information about *

*

* You can change the priority settings of your rule groups at any time. To make it easier to insert rule * groups later, number them so there's a wide range in between, for example use 100, 200, and so on. */ public void setPriority(Integer priority) { this.priority = priority; } /** *

* An integer setting that indicates the order in which to run the stateful rule groups in a single Network Firewall * firewall policy. This setting only applies to firewall policies that specify the STRICT_ORDER rule * order in the stateful engine options settings. *

*

* Network Firewall evalutes each stateful rule group against a packet starting with the group that has the lowest * priority setting. You must ensure that the priority settings are unique within each policy. For information about *

*

* You can change the priority settings of your rule groups at any time. To make it easier to insert rule groups * later, number them so there's a wide range in between, for example use 100, 200, and so on. *

* * @return An integer setting that indicates the order in which to run the stateful rule groups in a single Network * Firewall firewall policy. This setting only applies to firewall policies that specify the * STRICT_ORDER rule order in the stateful engine options settings.

*

* Network Firewall evalutes each stateful rule group against a packet starting with the group that has the * lowest priority setting. You must ensure that the priority settings are unique within each policy. For * information about *

*

* You can change the priority settings of your rule groups at any time. To make it easier to insert rule * groups later, number them so there's a wide range in between, for example use 100, 200, and so on. */ public Integer getPriority() { return this.priority; } /** *

* An integer setting that indicates the order in which to run the stateful rule groups in a single Network Firewall * firewall policy. This setting only applies to firewall policies that specify the STRICT_ORDER rule * order in the stateful engine options settings. *

*

* Network Firewall evalutes each stateful rule group against a packet starting with the group that has the lowest * priority setting. You must ensure that the priority settings are unique within each policy. For information about *

*

* You can change the priority settings of your rule groups at any time. To make it easier to insert rule groups * later, number them so there's a wide range in between, for example use 100, 200, and so on. *

* * @param priority * An integer setting that indicates the order in which to run the stateful rule groups in a single Network * Firewall firewall policy. This setting only applies to firewall policies that specify the * STRICT_ORDER rule order in the stateful engine options settings.

*

* Network Firewall evalutes each stateful rule group against a packet starting with the group that has the * lowest priority setting. You must ensure that the priority settings are unique within each policy. For * information about *

*

* You can change the priority settings of your rule groups at any time. To make it easier to insert rule * groups later, number them so there's a wide range in between, for example use 100, 200, and so on. * @return Returns a reference to this object so that method calls can be chained together. */ public StatefulRuleGroup withPriority(Integer priority) { setPriority(priority); return this; } /** *

* The action that allows the policy owner to override the behavior of the rule group within a policy. *

* * @param override * The action that allows the policy owner to override the behavior of the rule group within a policy. */ public void setOverride(NetworkFirewallStatefulRuleGroupOverride override) { this.override = override; } /** *

* The action that allows the policy owner to override the behavior of the rule group within a policy. *

* * @return The action that allows the policy owner to override the behavior of the rule group within a policy. */ public NetworkFirewallStatefulRuleGroupOverride getOverride() { return this.override; } /** *

* The action that allows the policy owner to override the behavior of the rule group within a policy. *

* * @param override * The action that allows the policy owner to override the behavior of the rule group within a policy. * @return Returns a reference to this object so that method calls can be chained together. */ public StatefulRuleGroup withOverride(NetworkFirewallStatefulRuleGroupOverride override) { setOverride(override); 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 (getRuleGroupName() != null) sb.append("RuleGroupName: ").append(getRuleGroupName()).append(","); if (getResourceId() != null) sb.append("ResourceId: ").append(getResourceId()).append(","); if (getPriority() != null) sb.append("Priority: ").append(getPriority()).append(","); if (getOverride() != null) sb.append("Override: ").append(getOverride()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof StatefulRuleGroup == false) return false; StatefulRuleGroup other = (StatefulRuleGroup) obj; if (other.getRuleGroupName() == null ^ this.getRuleGroupName() == null) return false; if (other.getRuleGroupName() != null && other.getRuleGroupName().equals(this.getRuleGroupName()) == false) return false; if (other.getResourceId() == null ^ this.getResourceId() == null) return false; if (other.getResourceId() != null && other.getResourceId().equals(this.getResourceId()) == false) return false; if (other.getPriority() == null ^ this.getPriority() == null) return false; if (other.getPriority() != null && other.getPriority().equals(this.getPriority()) == false) return false; if (other.getOverride() == null ^ this.getOverride() == null) return false; if (other.getOverride() != null && other.getOverride().equals(this.getOverride()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getRuleGroupName() == null) ? 0 : getRuleGroupName().hashCode()); hashCode = prime * hashCode + ((getResourceId() == null) ? 0 : getResourceId().hashCode()); hashCode = prime * hashCode + ((getPriority() == null) ? 0 : getPriority().hashCode()); hashCode = prime * hashCode + ((getOverride() == null) ? 0 : getOverride().hashCode()); return hashCode; } @Override public StatefulRuleGroup clone() { try { return (StatefulRuleGroup) 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.fms.model.transform.StatefulRuleGroupMarshaller.getInstance().marshall(this, protocolMarshaller); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy