Class: Aws::Finspace::Types::IcmpTypeCode

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

Overview

Defines the ICMP protocol that consists of the ICMP type and code.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#codeInteger

The ICMP code. A value of -1 means all codes for the specified ICMP type.

Returns:

  • (Integer)


2913
2914
2915
2916
2917
2918
# File 'lib/aws-sdk-finspace/types.rb', line 2913

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

#typeInteger

The ICMP type. A value of -1 means all types.

Returns:

  • (Integer)


2913
2914
2915
2916
2917
2918
# File 'lib/aws-sdk-finspace/types.rb', line 2913

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