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

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


2897
2898
2899
2900
2901
2902
# File 'gems/aws-sdk-finspace/lib/aws-sdk-finspace/types.rb', line 2897

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

#typeInteger

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

Returns:

  • (Integer)


2897
2898
2899
2900
2901
2902
# File 'gems/aws-sdk-finspace/lib/aws-sdk-finspace/types.rb', line 2897

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