Class: Aws::SWF::Types::WorkflowTypeDetail
- Inherits:
-
Struct
- Object
- Struct
- Aws::SWF::Types::WorkflowTypeDetail
- 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
-
#configuration ⇒ Types::WorkflowTypeConfiguration
Configuration settings of the workflow type registered through RegisterWorkflowType.
-
#type_info ⇒ Types::WorkflowTypeInfo
General information about the workflow type.
Instance Attribute Details
#configuration ⇒ Types::WorkflowTypeConfiguration
Configuration settings of the workflow type registered through RegisterWorkflowType
6560 6561 6562 6563 6564 6565 |
# File 'lib/aws-sdk-swf/types.rb', line 6560 class WorkflowTypeDetail < Struct.new( :type_info, :configuration) SENSITIVE = [] include Aws::Structure end |
#type_info ⇒ Types::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 'lib/aws-sdk-swf/types.rb', line 6560 class WorkflowTypeDetail < Struct.new( :type_info, :configuration) SENSITIVE = [] include Aws::Structure end |