Class: Aws::SWF::Types::WorkflowTypeDetail
- Inherits:
-
Struct
- Object
- Struct
- Aws::SWF::Types::WorkflowTypeDetail
- 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
-
#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
7354 7355 7356 7357 7358 7359 |
# File 'gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb', line 7354 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.
7354 7355 7356 7357 7358 7359 |
# File 'gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb', line 7354 class WorkflowTypeDetail < Struct.new( :type_info, :configuration) SENSITIVE = [] include Aws::Structure end |