Module: Cfer::Core::Functions::AWS
- Extended by:
- Cfer::Core::Functions
- Defined in:
- lib/cfer/core/functions.rb
Class Method Summary collapse
Methods included from Cfer::Core::Functions
and, equals, find_in_map, get_att, get_azs, if, join, not, notification_arns, or, ref, select, sub
Class Method Details
.method_missing(sym, *args) ⇒ Object
59 60 61 62 63 |
# File 'lib/cfer/core/functions.rb', line 59 def self.method_missing(sym, *args) method = sym.to_s.camelize raise "AWS::#{method} does not accept arguments" unless args.empty? ref "AWS::#{method}" end |