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`.
28938 28939 28940 28941 28942 28943 28944 |
# File 'lib/aws-sdk-securityhub/types.rb', line 28938 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.
28938 28939 28940 28941 28942 28943 28944 |
# File 'lib/aws-sdk-securityhub/types.rb', line 28938 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`.
28938 28939 28940 28941 28942 28943 28944 |
# File 'lib/aws-sdk-securityhub/types.rb', line 28938 class RuleGroupSourceListDetails < Struct.new( :generated_rules_type, :target_types, :targets) SENSITIVE = [] include Aws::Structure end |