Class: CfnDsl::PropertyDefinition

Inherits:
JSONable
  • Object
show all
Defined in:
lib/cfndsl/Properties.rb

Instance Method Summary collapse

Methods inherited from JSONable

#declare, #method_missing, #ref_children

Methods included from Functions

#FnBase64, #FnFindInMap, #FnFormat, #FnGetAZs, #FnGetAtt, #FnJoin, #Ref

Methods included from RefCheck

#ref_children, #references

Constructor Details

#initialize(value) ⇒ PropertyDefinition

Handles property objects for Resources

Usage

Resource("aaa") {
  Property("propName", "propValue" )
}


13
14
15
# File 'lib/cfndsl/Properties.rb', line 13

def initialize(value) 
  @value = value;
end

Dynamic Method Handling

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

Instance Method Details

#to_json(*a) ⇒ Object



21
22
23
# File 'lib/cfndsl/Properties.rb', line 21

def to_json(*a) 
  @value.to_json(*a)
end

#valueObject



17
18
19
# File 'lib/cfndsl/Properties.rb', line 17

def value
  return @value
end