class Humidifier::Fn

Constants

FUNCTIONS

The list of all internal functions provided by AWS from docs.aws.amazon.com

/AWSCloudFormation/latest/UserGuide/intrinsic-function-reference.html

Attributes

name[R]
value[R]

Public Class Methods

new(name, value) click to toggle source
# File lib/humidifier/fn.rb, line 16
def initialize(name, value)
  @name = "Fn::#{name}"
  @value = value
end

Public Instance Methods

to_cf() click to toggle source
# File lib/humidifier/fn.rb, line 21
def to_cf
  { name => Serializer.dump(value) }
end