Class: Aws::EC2::Types::IcmpTypeCode

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

Overview

Describes 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)


37187
37188
37189
37190
37191
37192
# File 'lib/aws-sdk-ec2/types.rb', line 37187

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

#typeInteger

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

Returns:

  • (Integer)


37187
37188
37189
37190
37191
37192
# File 'lib/aws-sdk-ec2/types.rb', line 37187

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