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)


6427
6428
6429
6430
6431
6432
# File 'gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb', line 6427

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)


6427
6428
6429
6430
6431
6432
# File 'gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb', line 6427

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