module Aws::Templates::Utils::Contextualized::Refinements

Filter transformation refinements

Contains standard object refinements to transform their instances into scope filters.

Public Instance Methods

to_filter() click to toggle source

Convert to Override filter

# File lib/aws/templates/utils/contextualized/refinements.rb, line 19
def to_filter
  Aws::Templates::Utils::Contextualized::Filter::Override.new(self)
end
unknown() click to toggle source

Hash class patch

Adds to_filter method converting a hash into an Override filter

# File lib/aws/templates/utils/contextualized/refinements.rb, line 16
refine ::Hash do
  ##
  # Convert to Override filter
  def to_filter
    Aws::Templates::Utils::Contextualized::Filter::Override.new(self)
  end
end