Class: Aws::SWF::Types::WorkflowExecutionCount
- Inherits:
-
Struct
- Object
- Struct
- Aws::SWF::Types::WorkflowExecutionCount
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-swf/types.rb
Overview
Contains the count of workflow executions returned from CountOpenWorkflowExecutions or CountClosedWorkflowExecutions
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#count ⇒ Integer
The number of workflow executions.
-
#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 workflow executions.
5979 5980 5981 5982 5983 5984 |
# File 'lib/aws-sdk-swf/types.rb', line 5979 class WorkflowExecutionCount < 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.
5979 5980 5981 5982 5983 5984 |
# File 'lib/aws-sdk-swf/types.rb', line 5979 class WorkflowExecutionCount < Struct.new( :count, :truncated) SENSITIVE = [] include Aws::Structure end |