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
Note:
When making an API call, you may pass DnsRequestAction data as a hash:
{
domain: "NonEmptyString",
protocol: "NonEmptyString",
blocked: false,
}
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.
31449 31450 31451 31452 31453 31454 31455 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 31449 class DnsRequestAction < Struct.new( :domain, :protocol, :blocked) SENSITIVE = [] include Aws::Structure end |
#domain ⇒ String
The DNS domain that is associated with the DNS request.
31449 31450 31451 31452 31453 31454 31455 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 31449 class DnsRequestAction < Struct.new( :domain, :protocol, :blocked) SENSITIVE = [] include Aws::Structure end |
#protocol ⇒ String
The protocol that was used for the DNS request.
31449 31450 31451 31452 31453 31454 31455 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 31449 class DnsRequestAction < Struct.new( :domain, :protocol, :blocked) SENSITIVE = [] include Aws::Structure end |