Class: Aws::SWF::Types::WorkflowExecutionCount
- Inherits:
-
Struct
- Object
- Struct
- Aws::SWF::Types::WorkflowExecutionCount
- Defined in:
- gems/aws-sdk-swf/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.
6758 6759 6760 6761 6762 6763 |
# File 'gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb', line 6758 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.
6758 6759 6760 6761 6762 6763 |
# File 'gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb', line 6758 class WorkflowExecutionCount < Struct.new( :count, :truncated) SENSITIVE = [] include Aws::Structure end |