Class: Aws::Finspace::Types::IcmpTypeCode
- Inherits:
-
Struct
- Object
- Struct
- Aws::Finspace::Types::IcmpTypeCode
- Includes:
- Structure
- Defined in:
- 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
-
#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.
2913 2914 2915 2916 2917 2918 |
# File 'lib/aws-sdk-finspace/types.rb', line 2913 class IcmpTypeCode < Struct.new( :type, :code) SENSITIVE = [] include Aws::Structure end |
#type ⇒ Integer
The ICMP type. A value of -1 means all types.
2913 2914 2915 2916 2917 2918 |
# File 'lib/aws-sdk-finspace/types.rb', line 2913 class IcmpTypeCode < Struct.new( :type, :code) SENSITIVE = [] include Aws::Structure end |