Method: Awspec::Type::Sqs#method_missing

Defined in:
lib/awspec/type/sqs.rb

#method_missing(name) ⇒ Object



22
23
24
25
26
27
28
29
# File 'lib/awspec/type/sqs.rb', line 22

def method_missing(name)
  param_name = name.to_s
  if resource_via_client.include?(param_name)
    resource_via_client[param_name]
  else
    super
  end
end