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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-swf/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.

Returns:

  • (Integer)


3326
3327
3328
3329
3330
3331
# File 'gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb', line 3326

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.

Returns:

  • (Boolean)


3326
3327
3328
3329
3330
3331
# File 'gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb', line 3326

class PendingTaskCount < Struct.new(
  :count,
  :truncated)
  SENSITIVE = []
  include Aws::Structure
end