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, #external_parameters, external_parameters

Methods included from Functions

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

Methods included from RefCheck

#build_references

Constructor Details

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

Returns a new instance of Fn.



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

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

Instance Method Details

#as_json(_options = {}) ⇒ Object



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

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

#ref_childrenObject



220
221
222
# File 'lib/cfndsl/jsonable.rb', line 220

def ref_children
  [@argument]
end

#referencesObject



216
217
218
# File 'lib/cfndsl/jsonable.rb', line 216

def references
  @_refs
end

#to_json(*a) ⇒ Object



212
213
214
# File 'lib/cfndsl/jsonable.rb', line 212

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