class Aws::Plugins::SQSMd5s::Handler
def validate_send_message_batch(context, response)
def validate_send_message_batch(context, response) context.params[:entries].each do |entry| id = entry[:id] body = entry[:message_body] attributes = entry[:message_attributes] message_response = response.successful.select { |r| r.id == id }[0] unless message_response.nil? validate_single_message(body, attributes, message_response) end end end