Class: KnifeCloudformation::Cache::LocalValue

Inherits:
Object
  • Object
show all
Defined in:
lib/knife-cloudformation/cache.rb

Overview

Simple value for memory cache

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(*args) ⇒ LocalValue

Returns a new instance of LocalValue.



280
281
282
# File 'lib/knife-cloudformation/cache.rb', line 280

def initialize(*args)
  @value = nil
end

Instance Attribute Details

#valueObject

Returns value.

Returns:

  • (Object)

    value



279
280
281
# File 'lib/knife-cloudformation/cache.rb', line 279

def value
  @value
end