Class: AWS::Flow::GenericType

Inherits:
Object
  • Object
show all
Includes:
GenericTypeModule
Defined in:
lib/aws/decider/worker.rb

Direct Known Subclasses

ActivityType, WorkflowType

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from GenericTypeModule

#eql?, #hash

Constructor Details

#initialize(name, version, options = {}) ⇒ GenericType

Returns a new instance of GenericType.



80
81
82
83
84
# File 'lib/aws/decider/worker.rb', line 80

def initialize(name, version, options = {})
  @name = name
  @version = version
  @options = options
end

Instance Attribute Details

#nameObject

Returns the value of attribute name.



79
80
81
# File 'lib/aws/decider/worker.rb', line 79

def name
  @name
end

#optionsObject

Returns the value of attribute options.



79
80
81
# File 'lib/aws/decider/worker.rb', line 79

def options
  @options
end

#versionObject

Returns the value of attribute version.



79
80
81
# File 'lib/aws/decider/worker.rb', line 79

def version
  @version
end