class ActiveAws::CloudFormation::Template::Properties

Public Instance Methods

add(name, value) click to toggle source
# File lib/active_aws/cloud_formation/template/properties.rb, line 8
def add(name, value)
  store(name, value)
end
method_missing(method_name, *args, &block) click to toggle source
Calls superclass method
# File lib/active_aws/cloud_formation/template/properties.rb, line 11
def method_missing(method_name, *args, &block)
  if has_key?(method_name)
    fetch(method_name)
  else
    super
  end
end