Class: Aws::EC2::Types::IcmpTypeCode
- Inherits:
-
Struct
- Object
- Struct
- Aws::EC2::Types::IcmpTypeCode
- 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
-
#code ⇒ Integer
The ICMP code.
-
#type ⇒ Integer
The ICMP type.
Instance Attribute Details
#code ⇒ Integer
The ICMP code. A value of -1 means all codes for the specified ICMP type.
38320 38321 38322 38323 38324 38325 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 38320 class IcmpTypeCode < Struct.new( :code, :type) SENSITIVE = [] include Aws::Structure end |
#type ⇒ Integer
The ICMP type. A value of -1 means all types.
38320 38321 38322 38323 38324 38325 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 38320 class IcmpTypeCode < Struct.new( :code, :type) SENSITIVE = [] include Aws::Structure end |