Class: CfnDsl::CreationPolicyDefinition
- Defined in:
- lib/cfndsl/CreationPolicy.rb
Instance Method Summary collapse
-
#initialize(value) ⇒ CreationPolicyDefinition
constructor
Handles creation policy objects for Resources.
- #to_json(*a) ⇒ Object
- #value ⇒ Object
Methods inherited from JSONable
#declare, #incorrect_capitalization?, #method_missing, #ref_children, #titleize
Methods included from Functions
#FnAnd, #FnBase64, #FnEquals, #FnFindInMap, #FnFormat, #FnGetAZs, #FnGetAtt, #FnIf, #FnJoin, #FnNot, #FnOr, #FnSelect, #Ref
Methods included from RefCheck
Constructor Details
#initialize(value) ⇒ CreationPolicyDefinition
Handles creation policy objects for Resources
Usage
Resource("aaa") {
CreationPolicy('ResourceSignal', { 'Count' => 1, 'Timeout' => 'PT10M' })
}
13 14 15 |
# File 'lib/cfndsl/CreationPolicy.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/CreationPolicy.rb', line 21 def to_json(*a) @value.to_json(*a) end |
#value ⇒ Object
17 18 19 |
# File 'lib/cfndsl/CreationPolicy.rb', line 17 def value return @value end |