Method: Awspec::Type::Sqs#method_missing
- Defined in:
- lib/awspec/type/sqs.rb
#method_missing(name) ⇒ Object
25 26 27 28 29 30 31 32 |
# File 'lib/awspec/type/sqs.rb', line 25 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 |