class Aws::Templates::Utils::Parametrized::Constraint::Condition::NotNil

Do not evaluate constraint if value is nil

Public Instance Methods

check(value, _) click to toggle source
# File lib/aws/templates/utils/parametrized/constraint/condition.rb, line 25
def check(value, _)
  !value.nil?
end