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

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

Overview

Note:

When making an API call, you may pass WorkflowType data as a hash:

{
  name: "Name", # required
  version: "Version", # required
}

Represents a workflow type.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#nameString

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>

Returns:

  • (String)


7221
7222
7223
7224
7225
7226
# File 'lib/aws-sdk-swf/types.rb', line 7221

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

#versionString

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>

Returns:

  • (String)


7221
7222
7223
7224
7225
7226
# File 'lib/aws-sdk-swf/types.rb', line 7221

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