Class: Aws::WAFV2::Types::RuleSummary
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::WAFV2::Types::RuleSummary
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-wafv2/types.rb
 
Overview
High-level information about a Rule, returned by operations like DescribeManagedRuleGroup. This provides information like the ID, that you can use to retrieve and manage a ‘RuleGroup`, and the ARN, that you provide to the RuleGroupReferenceStatement to use the rule group in a Rule.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #action  ⇒ Types::RuleAction 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The action that WAF should take on a web request when it matches a rule’s statement.
 - 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of the rule.
 
Instance Attribute Details
#action ⇒ Types::RuleAction
The action that WAF should take on a web request when it matches a rule’s statement. Settings at the web ACL level can override the rule action setting.
      7969 7970 7971 7972 7973 7974  | 
    
      # File 'lib/aws-sdk-wafv2/types.rb', line 7969 class RuleSummary < Struct.new( :name, :action) SENSITIVE = [] include Aws::Structure end  | 
  
#name ⇒ String
The name of the rule.
      7969 7970 7971 7972 7973 7974  | 
    
      # File 'lib/aws-sdk-wafv2/types.rb', line 7969 class RuleSummary < Struct.new( :name, :action) SENSITIVE = [] include Aws::Structure end  |