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.
24445 24446 24447 24448 24449 24450 24451 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 24445 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.
24445 24446 24447 24448 24449 24450 24451 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 24445 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.
24445 24446 24447 24448 24449 24450 24451 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 24445 class DnsRequestAction < Struct.new( :domain, :protocol, :blocked) SENSITIVE = [] include Aws::Structure end |