Class: Aws::GameLift::Types::VpcPeeringConnectionStatus
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::GameLift::Types::VpcPeeringConnectionStatus
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-gamelift/types.rb
 
Overview
Represents status information for a VPC peering connection. Status codes and messages are provided from EC2 (see [VpcPeeringConnectionStateReason]). Connection status information is also communicated as a fleet event.
[1]: docs.aws.amazon.com/AWSEC2/latest/APIReference/API_VpcPeeringConnectionStateReason.html
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #code  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Code indicating the status of a VPC peering connection.
 - 
  
    
      #message  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Additional messaging associated with the connection status.
 
Instance Attribute Details
#code ⇒ String
Code indicating the status of a VPC peering connection.
      11180 11181 11182 11183 11184 11185  | 
    
      # File 'lib/aws-sdk-gamelift/types.rb', line 11180 class VpcPeeringConnectionStatus < Struct.new( :code, :message) SENSITIVE = [] include Aws::Structure end  | 
  
#message ⇒ String
Additional messaging associated with the connection status.
      11180 11181 11182 11183 11184 11185  | 
    
      # File 'lib/aws-sdk-gamelift/types.rb', line 11180 class VpcPeeringConnectionStatus < Struct.new( :code, :message) SENSITIVE = [] include Aws::Structure end  |