Class: Aws::SWF::Types::PendingTaskCount
- Inherits:
-
Struct
- Object
- Struct
- Aws::SWF::Types::PendingTaskCount
- 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
-
#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.
3725 3726 3727 3728 3729 3730 |
# File 'gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb', line 3725 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.
3725 3726 3727 3728 3729 3730 |
# File 'gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb', line 3725 class PendingTaskCount < Struct.new( :count, :truncated) SENSITIVE = [] include Aws::Structure end |