Class: Aws::NetworkFirewall::Types::DescribeRuleGroupSummaryRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::NetworkFirewall::Types::DescribeRuleGroupSummaryRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-networkfirewall/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#rule_group_arn ⇒ String
Required.
-
#rule_group_name ⇒ String
The descriptive name of the rule group.
-
#type ⇒ String
The type of rule group you want a summary for.
Instance Attribute Details
#rule_group_arn ⇒ String
Required. The Amazon Resource Name (ARN) of the rule group.
You must specify the ARN or the name, and you can specify both.
3168 3169 3170 3171 3172 3173 3174 |
# File 'lib/aws-sdk-networkfirewall/types.rb', line 3168 class DescribeRuleGroupSummaryRequest < Struct.new( :rule_group_name, :rule_group_arn, :type) 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.
3168 3169 3170 3171 3172 3173 3174 |
# File 'lib/aws-sdk-networkfirewall/types.rb', line 3168 class DescribeRuleGroupSummaryRequest < Struct.new( :rule_group_name, :rule_group_arn, :type) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
The type of rule group you want a summary for. This is a required field.
Valid value: ‘STATEFUL`
Note that ‘STATELESS` exists but is not currently supported. If you provide `STATELESS`, an exception is returned.
3168 3169 3170 3171 3172 3173 3174 |
# File 'lib/aws-sdk-networkfirewall/types.rb', line 3168 class DescribeRuleGroupSummaryRequest < Struct.new( :rule_group_name, :rule_group_arn, :type) SENSITIVE = [] include Aws::Structure end |