class Aws::Templates::Utils::LateBound::Reference

Reference

Reference is a special placeholder object designed to point to the object reference was created for with optional path and args attached.

References are used when the final value of an object property is unknown at the template calculation stage and can be extracted only when the final rendered view is submitted to the target system (late binding)

Constants

FAILURE_MESSAGES

Attributes

arguments[R]
instance[R]
path[R]

Public Class Methods

new(target_instance, target_path = nil, args = nil) click to toggle source
# File lib/aws/templates/utils/late_bound.rb, line 54
def initialize(target_instance, target_path = nil, args = nil)
  @instance = target_instance
  @path = target_path
  @arguments = args
end