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)


37247
37248
37249
37250
37251
37252
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 37247

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

#typeInteger

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

Returns:

  • (Integer)


37247
37248
37249
37250
37251
37252
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 37247

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