Class: CfnDsl::Fn

Inherits:
JSONable show all
Defined in:
lib/cfndsl/jsonable.rb

Overview

Handles all of the Fn

objects

Instance Method Summary collapse

Methods inherited from JSONable

#declare, #incorrect_capitalization?, #method_missing, #titleize

Methods included from Functions

#FnAnd, #FnBase64, #FnEquals, #FnFindInMap, #FnFormat, #FnGetAZs, #FnGetAtt, #FnIf, #FnJoin, #FnNot, #FnOr, #FnSelect, #Ref

Methods included from RefCheck

#build_references

Constructor Details

#initialize(function, argument, refs = []) ⇒ Fn

Returns a new instance of Fn.



188
189
190
191
192
# File 'lib/cfndsl/jsonable.rb', line 188

def initialize(function, argument, refs = [])
  @function = function
  @argument = argument
  @_refs = refs
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class CfnDsl::JSONable

Instance Method Details

#as_json(_options = {}) ⇒ Object



194
195
196
197
198
# File 'lib/cfndsl/jsonable.rb', line 194

def as_json(_options = {})
  hash = {}
  hash["Fn::#{@function}"] = @argument
  hash
end

#ref_childrenObject



208
209
210
# File 'lib/cfndsl/jsonable.rb', line 208

def ref_children
  [@argument]
end

#referencesObject



204
205
206
# File 'lib/cfndsl/jsonable.rb', line 204

def references
  @_refs
end

#to_json(*a) ⇒ Object



200
201
202
# File 'lib/cfndsl/jsonable.rb', line 200

def to_json(*a)
  as_json.to_json(*a)
end