Class: Aws::SWF::Types::WorkflowTypeDetail

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb

Overview

Contains details about a workflow type.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#configurationTypes::WorkflowTypeConfiguration

Configuration settings of the workflow type registered through RegisterWorkflowType



6560
6561
6562
6563
6564
6565
# File 'gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb', line 6560

class WorkflowTypeDetail < Struct.new(
  :type_info,
  :configuration)
  SENSITIVE = []
  include Aws::Structure
end

#type_infoTypes::WorkflowTypeInfo

General information about the workflow type.

The status of the workflow type (returned in the WorkflowTypeInfo structure) can be one of the following.

  • REGISTERED – The type is registered and available. Workers supporting this type should be running.

  • DEPRECATED – The type was deprecated using DeprecateWorkflowType, but is still in use. You should keep workers supporting this type running. You cannot create new workflow executions of this type.



6560
6561
6562
6563
6564
6565
# File 'gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb', line 6560

class WorkflowTypeDetail < Struct.new(
  :type_info,
  :configuration)
  SENSITIVE = []
  include Aws::Structure
end