Module: Momo::MomoCondition
- Included in:
- BooleanValue, Parameter, Resource
- Defined in:
- lib/momo/momoscope.rb
Instance Method Summary collapse
Instance Method Details
#and(another) ⇒ Object
77 78 79 |
# File 'lib/momo/momoscope.rb', line 77 def and(another) BooleanValue.new("Fn::And", @stack, self, another) end |
#equals(another) ⇒ Object
73 74 75 |
# File 'lib/momo/momoscope.rb', line 73 def equals(another) BooleanValue.new("Fn::Equals", @stack, self, another) end |
#or(another) ⇒ Object
81 82 83 |
# File 'lib/momo/momoscope.rb', line 81 def or(another) BooleanValue.new("Fn::Or", @stack, self, another) end |