Class: Aws::SWF::Types::PendingTaskCount

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#countInteger

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

#truncatedBoolean

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