Class: Aws::SWF::Types::ActivityType

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

Overview

Represents an activity type.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#nameString

The name of this activity.

The combination of activity type name and version must be unique within a domain.

Returns:

  • (String)


345
346
347
348
349
350
# File 'gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb', line 345

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

#versionString

The version of this activity.

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

Returns:

  • (String)


345
346
347
348
349
350
# File 'gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb', line 345

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