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, cidr, equals, find_in_map, get_att, get_azs, if, join, not, notification_arns, or, ref, select, split, sub
Class Method Details
.method_missing(sym, *args) ⇒ Object
67 68 69 70 71 |
# File 'lib/cfer/core/functions.rb', line 67 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 |