class Aws::Api::Docs::OperationDocumenter

def response_structure_example(method_name, operation)

def response_structure_example(method_name, operation)
  if example = ResponseStructureExample.new(method_name, operation).to_str
    parts = []
    parts << "@example Response structure\n\n"
    parts += example.lines.map { |line| "  " + line }
    tag(parts.join)
  end
end