Class: Aws::SWF::Types::WorkflowType

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

Overview

Represents a workflow type.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#nameString

The name of the workflow type.

The combination of workflow type name and version must be unique with in a domain.

Returns:

  • (String)


6386
6387
6388
6389
6390
6391
# File 'gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb', line 6386

class WorkflowType < Struct.new(
  :name,
  :version)
  SENSITIVE = []
  include Aws::Structure
end

#versionString

The version of the workflow type.

The combination of workflow type name and version must be unique with in a domain.

Returns:

  • (String)


6386
6387
6388
6389
6390
6391
# File 'gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb', line 6386

class WorkflowType < Struct.new(
  :name,
  :version)
  SENSITIVE = []
  include Aws::Structure
end