Class: Aws::SWF::Types::PendingTaskCount
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::SWF::Types::PendingTaskCount
 
 
- Includes:
 - Aws::Structure
 
- Defined in:
 - lib/aws-sdk-swf/types.rb
 
Overview
Contains the count of tasks in a task list.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #count  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The number of tasks in the task list.
 - 
  
    
      #truncated  ⇒ Boolean 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
If set to true, indicates that the actual count was more than the maximum supported by this API and the count returned is the truncated value.
 
Instance Attribute Details
#count ⇒ Integer
The number of tasks in the task list.
      3356 3357 3358 3359 3360 3361  | 
    
      # File 'lib/aws-sdk-swf/types.rb', line 3356 class PendingTaskCount < Struct.new( :count, :truncated) SENSITIVE = [] include Aws::Structure end  | 
  
#truncated ⇒ Boolean
If set to true, indicates that the actual count was more than the maximum supported by this API and the count returned is the truncated value.
      3356 3357 3358 3359 3360 3361  | 
    
      # File 'lib/aws-sdk-swf/types.rb', line 3356 class PendingTaskCount < Struct.new( :count, :truncated) SENSITIVE = [] include Aws::Structure end  |