Class: Aws::Batch::Types::ContainerSummary
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::Batch::Types::ContainerSummary
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-batch/types.rb
 
Overview
An object that represents summary details of a container within a job.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #exit_code  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The exit code to return upon completion.
 - 
  
    
      #reason  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A short (255 max characters) human-readable string to provide additional details for a running or stopped container.
 
Instance Attribute Details
#exit_code ⇒ Integer
The exit code to return upon completion.
      2081 2082 2083 2084 2085 2086  | 
    
      # File 'lib/aws-sdk-batch/types.rb', line 2081 class ContainerSummary < Struct.new( :exit_code, :reason) SENSITIVE = [] include Aws::Structure end  | 
  
#reason ⇒ String
A short (255 max characters) human-readable string to provide additional details for a running or stopped container.
      2081 2082 2083 2084 2085 2086  | 
    
      # File 'lib/aws-sdk-batch/types.rb', line 2081 class ContainerSummary < Struct.new( :exit_code, :reason) SENSITIVE = [] include Aws::Structure end  |