Class: Aws::SWF::Types::WorkflowType
- Inherits:
-
Struct
- Object
- Struct
- Aws::SWF::Types::WorkflowType
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-swf/types.rb
Overview
Represents a workflow type.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
The name of the workflow type.
-
#version ⇒ String
The version of the workflow type.
Instance Attribute Details
#name ⇒ String
The name of the workflow type.
<note markdown=“1”> The combination of workflow type name and version must be unique with in a domain.
</note>
6427 6428 6429 6430 6431 6432 |
# File 'lib/aws-sdk-swf/types.rb', line 6427 class WorkflowType < Struct.new( :name, :version) SENSITIVE = [] include Aws::Structure end |
#version ⇒ String
The version of the workflow type.
<note markdown=“1”> The combination of workflow type name and version must be unique with in a domain.
</note>
6427 6428 6429 6430 6431 6432 |
# File 'lib/aws-sdk-swf/types.rb', line 6427 class WorkflowType < Struct.new( :name, :version) SENSITIVE = [] include Aws::Structure end |