Sha256: 9355b5e6f60f95d707ca1734ed965c87c36245999f388cb186bffa41ea5ae292
Contents?: true
Size: 336 Bytes
Versions: 41
Compression:
Stored size: 336 Bytes
Contents
require 'cfndsl/JSONable' module CfnDsl class ConditionDefinition < JSONable # # Handles condition objects # # Usage: # Condition :ConditionName, FnEqual(Ref(:ParameterName), 'helloworld') def initialize(value) @value = value end def to_json(*a) @value.to_json(*a) end end end
Version data entries
41 entries across 41 versions & 1 rubygems