Class: Aws::NetworkFirewall::Types::DescribeRuleGroupRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::NetworkFirewall::Types::DescribeRuleGroupRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-networkfirewall/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#analyze_rule_group ⇒ Boolean
Indicates whether you want Network Firewall to analyze the stateless rules in the rule group for rule behavior such as asymmetric routing.
-
#rule_group_arn ⇒ String
The Amazon Resource Name (ARN) of the rule group.
-
#rule_group_name ⇒ String
The descriptive name of the rule group.
-
#type ⇒ String
Indicates whether the rule group is stateless or stateful.
Instance Attribute Details
#analyze_rule_group ⇒ Boolean
Indicates whether you want Network Firewall to analyze the stateless rules in the rule group for rule behavior such as asymmetric routing. If set to ‘TRUE`, Network Firewall runs the analysis.
3088 3089 3090 3091 3092 3093 3094 3095 |
# File 'lib/aws-sdk-networkfirewall/types.rb', line 3088 class DescribeRuleGroupRequest < Struct.new( :rule_group_name, :rule_group_arn, :type, :analyze_rule_group) SENSITIVE = [] include Aws::Structure end |
#rule_group_arn ⇒ String
The Amazon Resource Name (ARN) of the rule group.
You must specify the ARN or the name, and you can specify both.
3088 3089 3090 3091 3092 3093 3094 3095 |
# File 'lib/aws-sdk-networkfirewall/types.rb', line 3088 class DescribeRuleGroupRequest < Struct.new( :rule_group_name, :rule_group_arn, :type, :analyze_rule_group) SENSITIVE = [] include Aws::Structure end |
#rule_group_name ⇒ String
The descriptive name of the rule group. You can’t change the name of a rule group after you create it.
You must specify the ARN or the name, and you can specify both.
3088 3089 3090 3091 3092 3093 3094 3095 |
# File 'lib/aws-sdk-networkfirewall/types.rb', line 3088 class DescribeRuleGroupRequest < Struct.new( :rule_group_name, :rule_group_arn, :type, :analyze_rule_group) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
Indicates whether the rule group is stateless or stateful. If the rule group is stateless, it contains stateless rules. If it is stateful, it contains stateful rules.
<note markdown=“1”> This setting is required for requests that do not include the ‘RuleGroupARN`.
</note>
3088 3089 3090 3091 3092 3093 3094 3095 |
# File 'lib/aws-sdk-networkfirewall/types.rb', line 3088 class DescribeRuleGroupRequest < Struct.new( :rule_group_name, :rule_group_arn, :type, :analyze_rule_group) SENSITIVE = [] include Aws::Structure end |