Sha256: 8d0d93add504c13d8b99f601fd86ae9edfa7d2376ca96bbc73bf7c2b4117343a

Contents?: true

Size: 371 Bytes

Versions: 6

Compression:

Stored size: 371 Bytes

Contents

# frozen_string_literal: true

require 'cfndsl/jsonable'

module CfnDsl
  # Handles property objects for Resources
  #
  # Usage
  #   Resource("aaa") {
  #     Property("propName", "propValue" )
  #   }
  #
  class PropertyDefinition < JSONable
    include JSONSerialisableObject

    attr_reader :value

    def initialize(value)
      @value = value
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
cfndsl-0.17.5 lib/cfndsl/properties.rb
cfndsl-0.17.4 lib/cfndsl/properties.rb
cfndsl-0.17.3 lib/cfndsl/properties.rb
cfndsl-0.17.2 lib/cfndsl/properties.rb
cfndsl-0.17.1 lib/cfndsl/properties.rb
cfndsl-0.17.0 lib/cfndsl/properties.rb