Class: Aws::SecurityHub::Types::DnsRequestAction
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityHub::Types::DnsRequestAction
- Defined in:
- gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb
Overview
Provided if ActionType
is DNS_REQUEST
. It provides details about
the DNS request that was detected.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#blocked ⇒ Boolean
Indicates whether the DNS request was blocked.
-
#domain ⇒ String
The DNS domain that is associated with the DNS request.
-
#protocol ⇒ String
The protocol that was used for the DNS request.
Instance Attribute Details
#blocked ⇒ Boolean
Indicates whether the DNS request was blocked.
24568 24569 24570 24571 24572 24573 24574 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 24568 class DnsRequestAction < Struct.new( :domain, :protocol, :blocked) SENSITIVE = [] include Aws::Structure end |
#domain ⇒ String
The DNS domain that is associated with the DNS request.
Length Constraints: 128.
24568 24569 24570 24571 24572 24573 24574 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 24568 class DnsRequestAction < Struct.new( :domain, :protocol, :blocked) SENSITIVE = [] include Aws::Structure end |
#protocol ⇒ String
The protocol that was used for the DNS request.
Length Constraints: Minimum length of 1. Maximum length of 64.
24568 24569 24570 24571 24572 24573 24574 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 24568 class DnsRequestAction < Struct.new( :domain, :protocol, :blocked) SENSITIVE = [] include Aws::Structure end |