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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-securityhub/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)


25711
25712
25713
25714
25715
25716
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 25711

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)


25711
25712
25713
25714
25715
25716
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 25711

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