Class: CfnDsl::CreationPolicyDefinition

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

Instance Method Summary collapse

Methods inherited from JSONable

#declare, #method_missing, #ref_children

Methods included from Functions

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

Methods included from RefCheck

#ref_children, #references

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

#valueObject



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

def value
  return @value
end