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)


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

#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)


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