Class: CfnDsl::PropertyDefinition
- Includes:
- JSONSerialisableObject
- Defined in:
- lib/cfndsl/properties.rb
Overview
Handles property objects for Resources
Usage
Resource("aaa") {
Property("propName", "propValue" )
}
Constant Summary
Constants included from Functions
Instance Attribute Summary collapse
-
#value ⇒ Object
readonly
Returns the value of attribute value.
Instance Method Summary collapse
-
#initialize(value) ⇒ PropertyDefinition
constructor
A new instance of PropertyDefinition.
Methods included from JSONSerialisableObject
Methods inherited from JSONable
#as_json, #declare, #external_parameters, external_parameters, #ref_children, #to_json
Methods included from Functions
#FnAnd, #FnBase64, #FnCidr, #FnEquals, #FnFindInMap, #FnGetAZs, #FnGetAtt, #FnIf, #FnImportValue, #FnJoin, #FnNot, #FnOr, #FnSelect, #FnSplit, #FnSub, #Ref
Methods included from RefCheck
#build_references, #ref_children
Constructor Details
#initialize(value) ⇒ PropertyDefinition
Returns a new instance of PropertyDefinition.
18 19 20 |
# File 'lib/cfndsl/properties.rb', line 18 def initialize(value) @value = value end |
Instance Attribute Details
#value ⇒ Object (readonly)
Returns the value of attribute value.
16 17 18 |
# File 'lib/cfndsl/properties.rb', line 16 def value @value end |