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
Note:
When making an API call, you may pass IcmpTypeCode data as a hash:
{
code: 1,
type: 1,
}
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.
37871 37872 37873 37874 37875 37876 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 37871 class IcmpTypeCode < Struct.new( :code, :type) SENSITIVE = [] include Aws::Structure end |
#type ⇒ Integer
The ICMP type. A value of -1 means all types.
37871 37872 37873 37874 37875 37876 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 37871 class IcmpTypeCode < Struct.new( :code, :type) SENSITIVE = [] include Aws::Structure end |