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.
3309 3310 3311 3312 3313 3314 |
# File 'gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb', line 3309 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.
3309 3310 3311 3312 3313 3314 |
# File 'gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb', line 3309 class PendingTaskCount < Struct.new( :count, :truncated) SENSITIVE = [] include Aws::Structure end |