module AWS::Flow::GenericTypeModule

Public Instance Methods

eql?(other) click to toggle source
# File lib/aws/decider/worker.rb, line 77
def eql?(other)
  @name.eql?(other.name) && @version.eql?(other.version)
end
hash() click to toggle source
# File lib/aws/decider/worker.rb, line 74
def hash
  [@name, @version].hash
end