Module: Aws::Templates::Render::Utils::Inspect
- Extended by:
- Aws::Templates::Render
- Defined in:
- lib/aws/templates/render/utils/inspect.rb
Overview
Render for object introspection
Used by Inspectable to provide introspection mechanism (inspect) detached from the objects themselves. Standard framework rendering mechanism is used.
Defined Under Namespace
Classes: InspectView
Constant Summary collapse
- DEFAULT_RECURSION_DEPTH =
3
Class Method Summary collapse
Methods included from Aws::Templates::Render
can_render?, define_view, register, registry, view_for
Class Method Details
.recursion_depth ⇒ Object
19 20 21 |
# File 'lib/aws/templates/render/utils/inspect.rb', line 19 def self.recursion_depth @recursion_depth || DEFAULT_RECURSION_DEPTH end |
.recursion_depth=(depth) ⇒ Object
23 24 25 |
# File 'lib/aws/templates/render/utils/inspect.rb', line 23 def self.recursion_depth=(depth) @recursion_depth = Integer(depth) end |