Class: CfnDsl::ConditionDefinition

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

Overview

Handles condition objects

Usage:

Condition :ConditionName, FnEqual(Ref(:ParameterName), 'helloworld')

Instance Method Summary collapse

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

#build_references, #ref_children

Constructor Details

#initialize(value) ⇒ ConditionDefinition

Returns a new instance of ConditionDefinition.



9
10
11
# File 'lib/cfndsl/conditions.rb', line 9

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



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

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