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.
5898 5899 5900 5901 5902 5903 |
# File 'gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb', line 5898 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.
5898 5899 5900 5901 5902 5903 |
# File 'gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb', line 5898 class WorkflowExecutionCount < Struct.new( :count, :truncated) SENSITIVE = [] include Aws::Structure end |