module Aws::Templates::Utils::Inspectable

Inspect mixin.

Mixin provides means of composing inspect strings for objects through framework's rendering mechanism.

Public Instance Methods

inspect() click to toggle source
# File lib/aws/templates/utils/inspectable.rb, line 16
def inspect
  Render::Utils::Inspect.view_for(self).to_rendered
end
to_s() click to toggle source
# File lib/aws/templates/utils/inspectable.rb, line 12
def to_s
  Render::Utils::Stringify.view_for(self).to_rendered
end