Class: Aws::EC2::Types::IcmpTypeCode
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::EC2::Types::IcmpTypeCode
 
 
- Includes:
 - Structure
 
- Defined in:
 - 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.
      40111 40112 40113 40114 40115 40116  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 40111 class IcmpTypeCode < Struct.new( :code, :type) SENSITIVE = [] include Aws::Structure end  | 
  
#type ⇒ Integer
The ICMP type. A value of -1 means all types.
      40111 40112 40113 40114 40115 40116  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 40111 class IcmpTypeCode < Struct.new( :code, :type) SENSITIVE = [] include Aws::Structure end  |