Class: Aws::SecurityHub::Types::RuleGroupSourceStatelessRuleMatchAttributesTcpFlags
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::SecurityHub::Types::RuleGroupSourceStatelessRuleMatchAttributesTcpFlags
 
- Defined in:
- gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb
Overview
A set of TCP flags and masks to inspect for.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #flags  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Defines the flags from the Maskssetting that must be set in order for the packet to match.
- 
  
    
      #masks  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The set of flags to consider in the inspection. 
Instance Attribute Details
#flags ⇒ Array<String>
Defines the flags from the Masks setting that must be set in order
for the packet to match. Flags that are listed must be set. Flags
that are not listed must not be set.
| 30538 30539 30540 30541 30542 30543 | # File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 30538 class RuleGroupSourceStatelessRuleMatchAttributesTcpFlags < Struct.new( :flags, :masks) SENSITIVE = [] include Aws::Structure end | 
#masks ⇒ Array<String>
The set of flags to consider in the inspection. If not specified, then all flags are inspected.
| 30538 30539 30540 30541 30542 30543 | # File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 30538 class RuleGroupSourceStatelessRuleMatchAttributesTcpFlags < Struct.new( :flags, :masks) SENSITIVE = [] include Aws::Structure end |