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.



85
86
87
88
89
# File 'lib/aws/decider/worker.rb', line 85

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

Instance Attribute Details

#nameObject

Returns the value of attribute name.



84
85
86
# File 'lib/aws/decider/worker.rb', line 84

def name
  @name
end

#optionsObject

Returns the value of attribute options.



84
85
86
# File 'lib/aws/decider/worker.rb', line 84

def options
  @options
end

#versionObject

Returns the value of attribute version.



84
85
86
# File 'lib/aws/decider/worker.rb', line 84

def version
  @version
end