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

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
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



6519
6520
6521
6522
6523
6524
# File 'lib/aws-sdk-swf/types.rb', line 6519

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.



6519
6520
6521
6522
6523
6524
# File 'lib/aws-sdk-swf/types.rb', line 6519

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