Class: Aws::SecurityHub::Types::RuleGroupSourceListDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityHub::Types::RuleGroupSourceListDetails
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-securityhub/types.rb
Overview
Stateful inspection criteria for a domain list rule group.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#generated_rules_type ⇒ String
Indicates whether to allow or deny access to the domains listed in ‘Targets`.
-
#target_types ⇒ Array<String>
The protocols that you want to inspect.
-
#targets ⇒ Array<String>
The domains that you want to inspect for in your traffic flows.
Instance Attribute Details
#generated_rules_type ⇒ String
Indicates whether to allow or deny access to the domains listed in ‘Targets`.
28117 28118 28119 28120 28121 28122 28123 |
# File 'lib/aws-sdk-securityhub/types.rb', line 28117 class RuleGroupSourceListDetails < Struct.new( :generated_rules_type, :target_types, :targets) SENSITIVE = [] include Aws::Structure end |
#target_types ⇒ Array<String>
The protocols that you want to inspect. Specify ‘LS_SNI` for HTTPS. Specify `HTTP_HOST` for HTTP. You can specify either or both.
28117 28118 28119 28120 28121 28122 28123 |
# File 'lib/aws-sdk-securityhub/types.rb', line 28117 class RuleGroupSourceListDetails < Struct.new( :generated_rules_type, :target_types, :targets) SENSITIVE = [] include Aws::Structure end |
#targets ⇒ Array<String>
The domains that you want to inspect for in your traffic flows. You can provide full domain names, or use the ‘.’ prefix as a wildcard. For example, ‘.example.com` matches all domains that end with `example.com`.
28117 28118 28119 28120 28121 28122 28123 |
# File 'lib/aws-sdk-securityhub/types.rb', line 28117 class RuleGroupSourceListDetails < Struct.new( :generated_rules_type, :target_types, :targets) SENSITIVE = [] include Aws::Structure end |