Class: Aws::CodeBuild::Types::PhaseContext
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::CodeBuild::Types::PhaseContext
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-codebuild/types.rb
 
Overview
Additional information about a build phase that has an error. You can use this information for troubleshooting.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #message  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
An explanation of the build phase’s context.
 - 
  
    
      #status_code  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The status code for the context of the build phase.
 
Instance Attribute Details
#message ⇒ String
An explanation of the build phase’s context. This might include a command ID and an exit code.
      3944 3945 3946 3947 3948 3949  | 
    
      # File 'lib/aws-sdk-codebuild/types.rb', line 3944 class PhaseContext < Struct.new( :status_code, :message) SENSITIVE = [] include Aws::Structure end  | 
  
#status_code ⇒ String
The status code for the context of the build phase.
      3944 3945 3946 3947 3948 3949  | 
    
      # File 'lib/aws-sdk-codebuild/types.rb', line 3944 class PhaseContext < Struct.new( :status_code, :message) SENSITIVE = [] include Aws::Structure end  |