module Aws::PageableResponse::UnsafeEnumerableMethods

def count

def count
  if data.respond_to?(:count)
    data.count
  else
    raise NoMethodError, "undefined method `count'"
  end
end

def respond_to?(method_name, *args)

def respond_to?(method_name, *args)
  if method_name == :count
    data.respond_to?(:count)
  else
    super
  end
end

def to_h

def to_h
  data.to_h
end