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

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


37181
37182
37183
37184
37185
37186
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 37181

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

#typeInteger

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

Returns:

  • (Integer)


37181
37182
37183
37184
37185
37186
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 37181

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