# File lib/aws-sdk-resources/documenter/data_operation_documenter.rb, line 18 def plural? !!@operation.path.match(/\[/) end
# File lib/aws-sdk-resources/documenter/data_operation_documenter.rb, line 14 def return_tag tag("@return [#{return_type}]") end
# File lib/aws-sdk-resources/documenter/data_operation_documenter.rb, line 6 def return_type if plural? "Array<#{path_type}>" else path_type end end