Class: Aws::SecurityHub::Types::IcmpTypeCode

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-securityhub/types.rb

Overview

An Internet Control Message Protocol (ICMP) type and code.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#codeInteger

The ICMP code for which to deny or allow access. To deny or allow all codes, use the value ‘-1`.

Returns:

  • (Integer)


25835
25836
25837
25838
25839
25840
# File 'lib/aws-sdk-securityhub/types.rb', line 25835

class IcmpTypeCode < Struct.new(
  :code,
  :type)
  SENSITIVE = []
  include Aws::Structure
end

#typeInteger

The ICMP type for which to deny or allow access. To deny or allow all types, use the value ‘-1`.

Returns:

  • (Integer)


25835
25836
25837
25838
25839
25840
# File 'lib/aws-sdk-securityhub/types.rb', line 25835

class IcmpTypeCode < Struct.new(
  :code,
  :type)
  SENSITIVE = []
  include Aws::Structure
end