Class: Aws::SWF::Types::WorkflowExecutionCount

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#countInteger

The number of workflow executions.

Returns:

  • (Integer)


5938
5939
5940
5941
5942
5943
# File 'lib/aws-sdk-swf/types.rb', line 5938

class WorkflowExecutionCount < Struct.new(
  :count,
  :truncated)
  SENSITIVE = []
  include Aws::Structure
end

#truncatedBoolean

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.

Returns:

  • (Boolean)


5938
5939
5940
5941
5942
5943
# File 'lib/aws-sdk-swf/types.rb', line 5938

class WorkflowExecutionCount < Struct.new(
  :count,
  :truncated)
  SENSITIVE = []
  include Aws::Structure
end