Class: Aws::SecurityHub::Types::DnsRequestAction

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
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

Instance Attribute Details

#blockedBoolean

Indicates whether the DNS request was blocked.

Returns:

  • (Boolean)


24568
24569
24570
24571
24572
24573
24574
# File 'lib/aws-sdk-securityhub/types.rb', line 24568

class DnsRequestAction < Struct.new(
  :domain,
  :protocol,
  :blocked)
  SENSITIVE = []
  include Aws::Structure
end

#domainString

The DNS domain that is associated with the DNS request.

Length Constraints: 128.

Returns:

  • (String)


24568
24569
24570
24571
24572
24573
24574
# File 'lib/aws-sdk-securityhub/types.rb', line 24568

class DnsRequestAction < Struct.new(
  :domain,
  :protocol,
  :blocked)
  SENSITIVE = []
  include Aws::Structure
end

#protocolString

The protocol that was used for the DNS request.

Length Constraints: Minimum length of 1. Maximum length of 64.

Returns:

  • (String)


24568
24569
24570
24571
24572
24573
24574
# File 'lib/aws-sdk-securityhub/types.rb', line 24568

class DnsRequestAction < Struct.new(
  :domain,
  :protocol,
  :blocked)
  SENSITIVE = []
  include Aws::Structure
end